Drop extra prefix in logs

bar_select
Tyler Goodlet 2020-09-22 20:57:37 -04:00
parent bfa7839370
commit 268e748417
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ import json
import tractor import tractor
from pygments import highlight, lexers, formatters from pygments import highlight, lexers, formatters
_proj_name = 'piker' # Makes it so we only see the full module name when using ``__name__``
# without the extra "piker." prefix.
_proj_name = ''
def get_logger(name: str = None) -> logging.Logger: def get_logger(name: str = None) -> logging.Logger: