Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit d8aab36

Browse files
committed
Fix loggin format
Signed-off-by: Uilian Ries <uilianries@gmail.com>
1 parent 14457d0 commit d8aab36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bintray/bintray.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from requests.auth import HTTPBasicAuth
1111

1212

13-
__version__ = "0.1.0"
13+
__version__ = "0.1.1"
1414
__author__ = "Uilian Ries <uilianries@gmail.com>"
1515
__license__ = "MIT"
1616

@@ -34,7 +34,7 @@ def __init__(self, username=None, api_key=None):
3434

3535
self._logger = logging.getLogger(__file__)
3636
self._logger.setLevel(logging.INFO)
37-
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
37+
formatter = logging.Formatter('%(asctime)s:%(levelname)s: %(message)s')
3838
ch = logging.StreamHandler()
3939
ch.setLevel(logging.INFO)
4040
ch.setFormatter(formatter)

0 commit comments

Comments
 (0)