dev@locazia: fix misprint log
This commit is contained in:
parent
a0489a7383
commit
78a4a84c2b
|
|
@ -58,7 +58,7 @@ class AuthenticationMixin:
|
|||
db_session.commit()
|
||||
new_key = db_session.query(KnownKey).filter(KnownKey.seed_hash == new_key.seed_hash).first()
|
||||
assert new_key, "Key not created"
|
||||
make_log(f"[Auth] User {user_id} created new {token_type} key {new_key.id}")
|
||||
make_log("auth", f"[new-K] User {user_id} created new {token_type} key {new_key.id}")
|
||||
return {
|
||||
"key": new_key,
|
||||
"auth_v1_token": new_key.seed
|
||||
|
|
|
|||
Loading…
Reference in New Issue