Skip to content

Commit 722d8c2

Browse files
Change logging level
See #967, changed "create request" log in #968
1 parent eb226dc commit 722d8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/service_desk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def create_request_comment(self, issue_id_or_key, body, public=True):
236236
:param public: OPTIONAL: bool (default is True)
237237
:return: New comment
238238
"""
239-
log.warning("Creating comment...")
239+
log.info("Creating comment...")
240240
data = {"body": body, "public": public}
241241
url = "rest/servicedeskapi/request/{}/comment".format(issue_id_or_key)
242242

0 commit comments

Comments
 (0)