Skip to content

Commit

Permalink
debug log config fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-johnson committed May 19, 2018
1 parent 04dbc80 commit b96c5e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions network_pipeline/log/setup_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ def build_colorized_logger(
override_config = os.getenv(
"SHARED_LOG_CFG",
None)
debug_log_config = os.getenv(
debug_log_config = bool(os.getenv(
"DEBUG_SHARED_LOG_CFG",
None)
"0") == "1")
if override_config:
if debug_log_config:
print((
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def networkpipeline_test_suite():
setup(
name="network-pipeline",
cmdclass={"build_py": build_py},
version="1.0.18",
version="1.0.19",
description="Distributed Network Packet Analysis Pipeline " +
"for Layer 2, 3 and 4 Frames",
long_description="" +
Expand Down

0 comments on commit b96c5e7

Please sign in to comment.