Cleanup and more logging

This commit is contained in:
Manuel Ebert 2015-04-05 02:28:04 +04:00
parent 18d46417f1
commit b8ef404453
3 changed files with 11 additions and 11 deletions

View file

@ -12,7 +12,7 @@ import re
from datetime import datetime
import logging
log = logging.getLogger("jrnl")
log = logging.getLogger(__name__)
class Journal(object):

View file

@ -18,7 +18,7 @@ import argparse
import sys
import logging
log = logging.getLogger("jrnl")
log = logging.getLogger(__name__)
def parse_args(args=None):