Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
limm
2025-11-10 16:18:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
666ghj
2025-11-11 01:11:32 +0800
Commit
71f4b3ad7785f183780bf05adc72af8d33a51efe
71f4b3ad
1 parent
fe82b9ed
fix: 修复日志记录错误信息时的变量引用问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
app.py
app.py
View file @
71f4b3a
...
...
@@ -554,7 +554,8 @@ def read_process_output(process, app_name):
})
except
Exception
as
e
:
logger
.
exception
(
f
"Error reading output for {app_name}: {e}"
)
error_msg
=
f
"Error reading output for {app_name}: {e}"
logger
.
exception
(
error_msg
)
write_log_to_file
(
app_name
,
f
"[{datetime.now().strftime('
%
H:
%
M:
%
S')}] {error_msg}"
)
break
...
...
Please
register
or
login
to post a comment