Skip to content

Commit

Permalink
Merge pull request openwallet-foundation#598 from ianco/master
Browse files Browse the repository at this point in the history
Default settings for tracing
Signed-off-by: Nicholas Rempel <[email protected]>
  • Loading branch information
andrewwhitehead authored Jul 10, 2020
2 parents 7429082 + 22d7f27 commit 408b514
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aries_cloudagent/config/argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,12 +604,12 @@ def get_settings(self, args: Namespace) -> dict:
settings["timing.enabled"] = True
if args.timing_log:
settings["timing.log_file"] = args.timing_log
# note that you can configure tracing without actually enabling it
# this is to allow message- or exchange-specific tracing (vs global)
settings["trace.target"] = "log"
settings["trace.tag"] = ""
if args.trace:
# note that you can configure tracing without actually enabling it
# this is to allow message- or exchange-specific tracing (vs global)
settings["trace.enabled"] = True
settings["trace.target"] = "log"
settings["trace.tag"] = ""
if args.trace_target:
settings["trace.target"] = args.trace_target
if args.trace_tag:
Expand Down

0 comments on commit 408b514

Please sign in to comment.