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) {
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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments