Skip to content

Commit

Permalink
Warndep2 (#405)
Browse files Browse the repository at this point in the history
* fix logging deprecation warning

* fix logging dep warning
  • Loading branch information
jreadey authored Dec 13, 2024
1 parent 22efa26 commit a1c5834
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 a1c5834

Please sign in to comment.