Skip to content

Commit f31ee2b

Browse files
committed
Remove 'Warning:' prefix from debug message
Updated the debugPrint statement to remove the 'Warning:' prefix when unable to load libpyjni.so. This change streamlines log output for consistency.
1 parent 3f4adc0 commit f31ee2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/serious_python_android/lib/serious_python_android.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class SeriousPythonAndroid extends SeriousPythonPlatform {
4343
.invokeMethod<String>('loadLibrary', {'libname': 'pyjni'});
4444
await setenv("FLET_JNI_READY", "1");
4545
} catch (e) {
46-
debugPrint("Warning: Unable to load libpyjni.so library: $e");
46+
debugPrint("Unable to load libpyjni.so library: $e");
4747
}
4848

4949
// unpack python bundle

0 commit comments

Comments
 (0)