Skip to content

Commit e1d5cd4

Browse files
corrects f string format error (#4)
1 parent 6751caa commit e1d5cd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

essentials/decorators/logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def log(
3131
id_factory = _default_id_factory
3232

3333
if logger is None:
34-
logger = logging.getLogger(f"fn_calls")
34+
logger = logging.getLogger("fn_calls")
3535

3636
def before(name, fn, args, kwargs):
3737
function_call_id = id_factory()

0 commit comments

Comments
 (0)