Explorar el Código

Remove funcName from log messages.

tags/v1.0^2
Ben Kurtovic hace 10 años
padre
commit
fb35774790
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      bitshift/crawler/crawl.py

+ 2
- 2
bitshift/crawler/crawl.py Ver fichero

@@ -78,8 +78,8 @@ def _configure_logging():
logging.getLogger("urllib3").setLevel(logging.WARNING)

formatter = logging.Formatter(
fmt=("%(asctime)s %(levelname)s %(name)s:%(funcName)s"
" %(message)s"), datefmt="%y-%m-%d %H:%M:%S")
fmt=("%(asctime)s %(levelname)s %(name)s %(message)s"),
datefmt="%y-%m-%d %H:%M:%S")

file_handler = logging.handlers.TimedRotatingFileHandler(
"%s/%s" % (log_dir, "app.log"), when="H", interval=1,


Cargando…
Cancelar
Guardar