8000 [GR-61867] Backport to 24.2: Change the log level of 'Unexpected exec… · oracle/graalpython@28a6665 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 28a6665

Browse files
committed
[GR-61867] Backport to 24.2: Change the log level of 'Unexpected executable for slot pointer' messages to fine.
PullRequest: graalpython/3680
2 parents 61d03aa + 77a8b41 commit 28a6665

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type/TpSlots.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ public static TpSlots fromNative(PythonAbstractNativeObject pythonClass, PythonC
842842
existingSlotWrapper = execWrapper;
843843
} else if (executable != null) {
844844
// This can happen for legacy slots where the delegate would be a PFunction
845-
LOGGER.warning(() -> String.format("Unexpected executable for slot pointer: %s", executable));
845+
LOGGER.fine(() -> String.format("Unexpected executable for slot pointer: %s", executable));
846846
}
847847
} catch (UnsupportedMessageException e) {
848848
throw new IllegalStateException(e);

0 commit comments

Comments
 (0)
0