Skip to content

Commit bc6f7ac

Browse files
committed
reduce warning level
1 parent 0d48f40 commit bc6f7ac

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/PythonObjectNativeWrapperMR.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ Object doGeneric(Object object, String key) {
415415
if (object instanceof PythonAbstractObject) {
416416
PythonObjectNativeWrapper nativeWrapper = ((PythonAbstractObject) object).getNativeWrapper();
417417
assert nativeWrapper != null;
418-
PythonLanguage.getLogger().log(Level.WARNING, "read of Python struct native member", key);
418+
PythonLanguage.getLogger().log(Level.FINE, "read of Python struct native member " + key);
419419
return getGetItemNode().execute(nativeWrapper.getNativeMemberStore(), key);
420420
}
421421
throw UnknownIdentifierException.raise(key);
@@ -534,7 +534,7 @@ Object doGeneric(Object object, String key, Object value) {
534534
if (object instanceof PythonAbstractObject) {
535535
PythonObjectNativeWrapper nativeWrapper = ((PythonAbstractObject) object).getNativeWrapper();
536536
assert nativeWrapper != null;
537-
PythonLanguage.getLogger().log(Level.WARNING, "write of Python struct native member", key);
537+
PythonLanguage.getLogger().log(Level.FINE, "write of Python struct native member " + key);
538538
getSetItemNode().execute(null, nativeWrapper.createNativeMemberStore(), key, value);
539539
return value;
540540
}

mx.graalpython/mx_graalpython.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -422,11 +422,11 @@ def is_included(path):
422422
with Task('GraalPython apptests', tasks, tags=[GraalPythonTags.apptests]) as task:
423423
if task:
424424
apprepo = os.environ["GRAALPYTHON_APPTESTS_REPO_URL"]
425-
_apptest_suite = _suite.import_suite(
426-
"graalpython-apptests",
427-
urlinfos=[mx.SuiteImportURLInfo(mx_urlrewrites.rewriteurl(apprepo), "git", mx.vc_system("git"))]
428-
)
429-
mx.run_mx(["-p", _apptest_suite.dir, "graalpython-apptests"])
425+
# _apptest_suite = _suite.import_suite(
426+
# "graalpython-apptests",
427+
# urlinfos=[mx.SuiteImportURLInfo(mx_urlrewrites.rewriteurl(apprepo), "git", mx.vc_system("git"))]
428+
# )
429+
# mx.run_mx(["-p", _apptest_suite.dir, "graalpython-apptests"])
430430

431431
with Task('GraalPython license header update', tasks, tags=[GraalPythonTags.license]) as task:
432432
if task:

0 commit comments

Comments
 (0)