File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
com.oracle.graal.python.shell/src/com/oracle/graal/python/shell
com.oracle.graal.python/src/com/oracle/graal/python/runtime Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,6 @@ protected void launch(Builder contextBuilder) {
163
163
// setting this to make sure our TopLevelExceptionHandler calls the excepthook
164
164
// to print Python exceptions
165
165
contextBuilder .option ("python.AlwaysRunExcepthook" , "true" );
166
- contextBuilder .option ("log.level" , "WARNING" );
167
166
if (inspectFlag ) {
168
167
contextBuilder .option ("python.InspectFlag" , "true" );
169
168
}
Original file line number Diff line number Diff line change @@ -119,8 +119,8 @@ static void writeWarning(String warning) {
119
119
PythonLanguage .getLogger ().warning (warning );
120
120
}
121
121
122
- static void writeInfo (String warning ) {
123
- PythonLanguage .getLogger ().info ( warning );
122
+ static void writeInfo (String message ) {
123
+ PythonLanguage .getLogger ().fine ( message );
124
124
}
125
125
126
126
@ TruffleBoundary
You can’t perform that action at this time.
0 commit comments