Skip to content

Commit 831bd8a

Browse files
author
Steve Arnold
authored
Merge pull request #41 from sarnold/info-messages
info logging
2 parents 63bd68e + cc39c7f commit 831bd8a

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
524
1.1.5 (2025-09-04)
625
------------------
726

@@ -10,7 +29,9 @@ Fixes
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

1637
1.1.4 (2025-08-18)

src/daemonizer/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)