We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 317f470 commit 2223f8fCopy full SHA for 2223f8f
src/mcpm/commands/router.py
@@ -138,6 +138,7 @@ def start_router(verbose):
138
start_new_session=True, # create new session, so the process won't be affected by terminal closing
139
)
140
if verbose:
141
+ console.rule("verbose log start")
142
with open(log_file, "r") as log:
143
# print log before startup complete
144
log.seek(start)
@@ -148,6 +149,7 @@ def start_router(verbose):
148
149
console.print(line.strip())
150
if "Application startup complete." in line:
151
break
152
+ console.rule("verbose log end")
153
154
# record PID
155
pid = process.pid
0 commit comments