Skip to content

Commit

Permalink
Class-based good refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
gpchelkin committed Jun 28, 2017
1 parent 2c0a04e commit c45d85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scdlbot/scdlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
syslog_udp_port = int(syslog_udp_port)
syslog_handler = SysLogHandler(address=(syslog_hostname, syslog_udp_port))
handlers.append(syslog_handler)
logging.basicConfig(format='%(asctime)s %(hostname)s %(name)s: %(message)s', datefmt='%b %d %H:%M:%S',
logging.basicConfig(format='%(asctime)s {} %(name)s: %(message)s'.format('heroku'), datefmt='%b %d %H:%M:%S',
level=logging.DEBUG, handlers=handlers)
logger = logging.getLogger(__name__)

Expand Down

0 comments on commit c45d85f

Please sign in to comment.