Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 0bfc5fa

Browse files
authored
[client] Added logging levels DEBUG and WARN (#176)
Co-authored-by: nor3th <>
1 parent 4228691 commit 0bfc5fa

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pycti/connector/opencti_connector_helper.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,12 @@ def log_error(self, msg):
493493

494494
def log_info(self, msg):
495495
logging.info(msg)
496+
497+
def log_debug(self, msg):
498+
logging.debug(msg)
499+
500+
def log_warning(self, msg):
501+
logging.warning(msg)
496502

497503
def date_now(self) -> str:
498504
"""get the current date (UTC)

0 commit comments

Comments
 (0)