Don't disclosure webhook url to logs on skipping it

This commit is contained in:
norohind 2021-10-06 21:02:43 +03:00
parent 0689d8b1ee
commit 4cb7c20bb8
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -227,7 +227,7 @@ class Messages_sender(threading.Thread):
if url.startswith('https://'):
self.send(url)
else:
logger.debug(f'Skipping {url}')
logger.debug(f'Skipping ...{url[-3:]}')
else:
logger.warning(f'Unknown url type {type(url)}, {url}')
else: