Skip to content

Commit f662403

Browse files
committed
Remove redundant debug log in async Python runner
Eliminated an unnecessary debug statement before the async Python execution to reduce log verbosity and improve code clarity.
1 parent 4d27e14 commit f662403

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/serious_python_android/lib/src/cpython.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ Future<String> runPythonProgramFFI(bool sync, String dynamicLibPath,
7676
} else {
7777
// Async run: use Isolate.run() to avoid manual port lifecycle issues.
7878
try {
79-
spDebug(
80-
"Python async run start (sync=$sync, script=${script.isNotEmpty}, program=$pythonProgramPath)");
8179
final result = await Isolate.run(
8280
() => _runPythonProgram(dynamicLibPath, pythonProgramPath, script));
8381
spDebug("Python run done (resultLength=${result.length})");

0 commit comments

Comments
 (0)