Skip to content

Commit

Permalink
fix logging dep warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Dec 11, 2024
1 parent 80e825e commit ac84534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hsds/hsds_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def check_processes(self):
if p.poll() is not None:
result = p.communicate()
msg = f"process {pname} ended, result: {result}"
self.log.warn(msg)
self.log.warning(msg)
# TBD - restart failed process

def run(self):
Expand Down

0 comments on commit ac84534

Please sign in to comment.