fix: correct typo in pretty-logs property (#7886)
Typo property pretty logs
This commit is contained in:
parent
910720db00
commit
164d931bbd
1 changed files with 1 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ def configure(
|
|||
log_format = DEFAULT_LOG_FORMAT
|
||||
# pretty print to rich stdout development-friendly but poor performance, It's better for debugger.
|
||||
# suggest directly print to stdout in production
|
||||
log_stdout_pretty = os.getenv("LAGFLOW_PRETTY_LOGS", "true").lower() == "true"
|
||||
log_stdout_pretty = os.getenv("LANGFLOW_PRETTY_LOGS", "true").lower() == "true"
|
||||
if log_stdout_pretty:
|
||||
logger.configure(
|
||||
handlers=[
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue