Skip to content

Commit

Permalink
Make step.log_filename None by default
Browse files Browse the repository at this point in the history
This is the behavior we expect when checking to see if the step has a log filename later on, such as in `SphericalBaseStep`.
  • Loading branch information
altheaden committed Jun 1, 2023
1 parent 75642e5 commit ff87350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polaris/step.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def __init__(self, test_case, name, subdir=None, cpus_per_task=1,

# these will be set before running the step, dummy placeholders for now
self.logger = logging.getLogger('dummy')
self.log_filename = ""
self.log_filename = None

# output caching
self.cached = cached
Expand Down

0 comments on commit ff87350

Please sign in to comment.