Skip to content

Commit 39dcb16

Browse files
authored
[DEV-10320] Monik log level debug (#38)
1 parent 6c48309 commit 39dcb16

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-tortik (0.2.14) unstable; urgency=low
2+
3+
* MONIK level debug
4+
5+
-- Nikita Kotov <[email protected]> Wed, 3 Apr 2023 16:30:00 +0300
6+
17
python-tortik (0.2.13) unstable; urgency=low
28

39
* Rollback to asynchronous decorator

tortik/logger.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def complete_logging(self, status_code, additional_data=None):
182182
+ additional_data
183183
)
184184

185-
self.info("MONIK {}".format(" ".join("{}={}".format(k, v) for (k, v) in data)))
185+
self.debug("MONIK {}".format(" ".join("{}={}".format(k, v) for (k, v) in data)))
186186

187187
self._completed = True
188188

tortik/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ def __parse_version_from_changelog():
1818
return None
1919

2020

21-
version = __parse_version_from_changelog() or "0.2.13"
21+
version = __parse_version_from_changelog() or "0.2.14"

0 commit comments

Comments
 (0)