fix: fix differing stacktrace on stdout and file (#1404)

* fix(c-bootstrap): produce identical stack traces
This commit is contained in:
Takase 2023-04-08 01:18:16 +08:00 committed by takase1121
parent bb31a1adf2
commit 4e3d6824ff
No known key found for this signature in database
GPG Key ID: 60EEFFC68EB3031B
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ init_lua:
"end, function(err)\n"
" local error_dir\n"
" io.stdout:write('Error: '..tostring(err)..'\\n')\n"
" io.stdout:write(debug.traceback(nil, 4)..'\\n')\n"
" io.stdout:write(debug.traceback(nil, 2)..'\\n')\n"
" if core and core.on_error then\n"
" error_dir=USERDIR\n"
" pcall(core.on_error, err)\n"