Skip to content

Commit 7100eb6

Browse files
committed
move debug info to LogLevel FINE
1 parent 24d3cf8 commit 7100eb6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonMain.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ protected void launch(Builder contextBuilder) {
163163
// setting this to make sure our TopLevelExceptionHandler calls the excepthook
164164
// to print Python exceptions
165165
contextBuilder.option("python.AlwaysRunExcepthook", "true");
166-
contextBuilder.option("log.level", "WARNING");
167166
if (inspectFlag) {
168167
contextBuilder.option("python.InspectFlag", "true");
169168
}

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonCore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ static void writeWarning(String warning) {
119119
PythonLanguage.getLogger().warning(warning);
120120
}
121121

122-
static void writeInfo(String warning) {
123-
PythonLanguage.getLogger().info(warning);
122+
static void writeInfo(String message) {
123+
PythonLanguage.getLogger().fine(message);
124124
}
125125

126126
@TruffleBoundary

0 commit comments

Comments
 (0)