[mod] remove emojis from source code

This commit is contained in:
Alexandre Flament 2020-12-20 08:58:57 +01:00
parent 14c7cc0e11
commit f4983e7415
2 changed files with 22 additions and 22 deletions

View file

@ -47,7 +47,7 @@ class ErrorContext:
def add_error_context(engine_name: str, error_context: ErrorContext) -> None:
errors_for_engine = errors_per_engines.setdefault(engine_name, {})
errors_for_engine[error_context] = errors_for_engine.get(error_context, 0) + 1
logger.debug('⚠️ %s: %s', engine_name, str(error_context))
logger.debug('%s: %s', engine_name, str(error_context))
def get_trace(traces):