Skip to content

Commit

Permalink
bit better
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry1 committed Aug 5, 2024
1 parent 482a04a commit a804ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valuefragments/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def logdecorate(
| Callable[_FunParamT, Coroutine[Any, Any, _FunCallResultT]]
):
"""Decorator to log start and stop into file 'decorated.log' with logging."""
thelogger: logging.Logger = logging.getLogger("logdecorate." + func.__name__)
thelogger: logging.Logger = logging.getLogger(f"logdecorate.{func.__name__}")
the_format: str = "|".join(
[
"%(asctime)s",
Expand Down

0 comments on commit a804ec1

Please sign in to comment.