forked from cerc-io/stack-orchestrator
Add logs
This commit is contained in:
parent
f1fdc48aaa
commit
d6a8f8e080
@ -623,12 +623,16 @@ def command( # noqa: C901
|
|||||||
main_logger.log(
|
main_logger.log(
|
||||||
f"Directing deployment logs to: {run_log_file_path}"
|
f"Directing deployment logs to: {run_log_file_path}"
|
||||||
)
|
)
|
||||||
|
main_logger.log(f"Attempting to open: {run_log_file_path}")
|
||||||
run_log_file = open(run_log_file_path, "wt")
|
run_log_file = open(run_log_file_path, "wt")
|
||||||
|
main_logger.log("After opening log file")
|
||||||
run_reg_client = LaconicRegistryClient(
|
run_reg_client = LaconicRegistryClient(
|
||||||
laconic_config, log_file=run_log_file
|
laconic_config, log_file=run_log_file
|
||||||
)
|
)
|
||||||
|
main_logger.log("After running registry client")
|
||||||
|
|
||||||
build_logger = TimedLogger(run_id, run_log_file)
|
build_logger = TimedLogger(run_id, run_log_file)
|
||||||
|
main_logger.log("After running timed logger")
|
||||||
build_logger.log("Processing ...")
|
build_logger.log("Processing ...")
|
||||||
process_app_deployment_request(
|
process_app_deployment_request(
|
||||||
ctx,
|
ctx,
|
||||||
|
Loading…
Reference in New Issue
Block a user