1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-04-11 11:52:08 +02:00

fixed log message typo

This commit is contained in:
Gani Georgiev 2024-12-11 11:07:42 +02:00
parent 3634fd9c26
commit 3ec10a9c7d

View File

@ -90,7 +90,7 @@ func SendRecordOTP(app core.App, authRecord *core.Record, otpId string, pass str
otp, err := e.App.FindOTPById(otpId)
if err != nil {
e.App.Logger().Warn(
"Unabled to find OTP to update its sentTo field (either it was already deleted or the id is nonexisting)",
"Unable to find OTP to update its sentTo field (either it was already deleted or the id is nonexisting)",
"error", err,
"otpId", otpId,
)