From ac8453403a6ce6eb4474a214b304432e57028e3c Mon Sep 17 00:00:00 2001 From: John Readey Date: Wed, 11 Dec 2024 14:03:37 -0800 Subject: [PATCH] fix logging dep warning --- hsds/hsds_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hsds/hsds_app.py b/hsds/hsds_app.py index 6b6620ed..e690b68d 100644 --- a/hsds/hsds_app.py +++ b/hsds/hsds_app.py @@ -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):