Skip to content

Commit 6c9001d

Browse files
committed
Changed log level in checkoutable listener to info
Signed-off-by: snipe <[email protected]>
1 parent d8b1eec commit 6c9001d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Listeners/CheckoutableListener.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ public function onCheckedOut($event)
6969
}
7070
}
7171
} catch (ClientException $e) {
72-
Log::debug("Exception caught during checkout notification: " . $e->getMessage());
72+
Log::info("Exception caught during checkout notification: " . $e->getMessage());
7373
} catch (Exception $e) {
74-
Log::error("Exception caught during checkout notification: " . $e->getMessage());
74+
Log::info("Exception caught during checkout notification: " . $e->getMessage());
7575
}
7676
}
7777

@@ -124,9 +124,9 @@ public function onCheckedIn($event)
124124
}
125125

126126
} catch (ClientException $e) {
127-
Log::debug("Exception caught during checkout notification: " . $e->getMessage());
127+
Log::info("Exception caught during checkout notification: " . $e->getMessage());
128128
} catch (Exception $e) {
129-
Log::error("Exception caught during checkin notification: " . $e->getMessage());
129+
Log::info("Exception caught during checkin notification: " . $e->getMessage());
130130
}
131131
}
132132

0 commit comments

Comments
 (0)