File tree Expand file tree Collapse file tree 2 files changed +25
-4
lines changed
Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,25 @@ Changelog
22=========
33
44
5+ 1.1.7 (2025-11-03)
6+ ------------------
7+
8+ Changes
9+ ~~~~~~~
10+ - Reset logging level in is_running() to info. [Stephen L Arnold]
11+
12+
13+ 1.1.6 (2025-11-02)
14+ ------------------
15+
16+ Changes
17+ ~~~~~~~
18+ - Make sure all logging calls are debug in self.is_running. [Stephen L
19+ Arnold]
20+
21+ * aligns with overall logging config cleanup in pyserv
22+
23+
5241.1.5 (2025-09-04)
625------------------
726
1029- Update packaging and spec file, simplify version cfg. [Stephen L
1130 Arnold]
1231
13- * no .git folder in container, export pretend in GH env
32+ * no more version file or exports in the spec file
33+ * no .git folder in container, so export pretend in GH env
34+ * update changelog
1435
1536
16371.1.4 (2025-08-18)
Original file line number Diff line number Diff line change @@ -305,12 +305,12 @@ def is_running(self):
305305 pid = self .get_pid ()
306306
307307 if pid is None :
308- logging .debug ('Process is stopped' )
308+ logging .info ('Process is stopped' )
309309 return False
310310 if os .path .exists (f'/proc/{ pid } ' ):
311- logging .debug ('Process (pid %d) is running...' , pid )
311+ logging .info ('Process (pid %d) is running...' , pid )
312312 return True
313- logging .debug ('Process (pid %d) is killed' , pid )
313+ logging .info ('Process (pid %d) is killed' , pid )
314314 return False
315315
316316 def run (self ):
You can’t perform that action at this time.
0 commit comments