Skip to content

Commit

Permalink
Properly check the value.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTyton committed Jul 16, 2024
1 parent 14b0d2e commit f1148e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion release-versions/latest.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.07.16
2024.07.16-1
2 changes: 1 addition & 1 deletion root/app/ff_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@ def log_debug(msg: str) -> None:
Args:
msg (str): The debug message to log.
"""
if verbose:
if verbose.value:
log(msg, "OKBLUE")

0 comments on commit f1148e7

Please sign in to comment.