Skip to content

Commit 44cdc4a

Browse files
committed
Typo fix
1 parent d9442fd commit 44cdc4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public static function encrypt($plainText, $cipherKey) {
8686
if ($encrypted = openssl_encrypt($plainText, ALGORITHM, $cipherKey, true, $iv)) {
8787
return bin2hex($iv) . bin2hex($encrypted);
8888
} else {
89-
Logger::debug("Decrypt error", openssl_error_string());
89+
Logger::debug("Encrypt error", openssl_error_string());
9090
return "";
9191
}
9292

0 commit comments

Comments
 (0)