From 30463ba2ea487bfeedc97d63e165ab77700b8b64 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 4 Jun 2019 11:06:35 +0200 Subject: spec: Log to python-log.txt. * modules/language/python/spec.scm (trace): Write to "python-log.txt" instead of "log.txt". --- modules/language/python/spec.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/language/python/spec.scm b/modules/language/python/spec.scm index aa8e346..c2f15bf 100644 --- a/modules/language/python/spec.scm +++ b/modules/language/python/spec.scm @@ -23,7 +23,7 @@ (define (trace . x) (when *python-debug* (let () - (define port (open-file "log.txt" "a")) + (define port (open-file "python-log.txt" "a")) (with-output-to-port port (lambda () (pretty-print x) (car (reverse x)))) -- cgit v1.2.3