hooks: raise exception logs to error level

This commit is contained in:
Adam
2022-06-08 17:13:34 -04:00
parent 5c319169d5
commit 4aa1a3f6e8

View File

@@ -225,7 +225,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("error during main loop tasks", ex); log.error("error during main loop tasks", ex);
} }
} }
@@ -350,7 +350,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("Error during overlay rendering", ex); log.error("Error during overlay rendering", ex);
} }
notifier.processFlash(graphics2d); notifier.processFlash(graphics2d);
@@ -445,7 +445,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("Error during overlay rendering", ex); log.error("Error during overlay rendering", ex);
} }
} }
@@ -461,7 +461,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("Error during overlay rendering", ex); log.error("Error during overlay rendering", ex);
} }
} }
@@ -513,7 +513,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("Error during overlay rendering", ex); log.error("Error during overlay rendering", ex);
} }
} }
@@ -529,7 +529,7 @@ public class Hooks implements Callbacks
} }
catch (Exception ex) catch (Exception ex)
{ {
log.warn("Error during overlay rendering", ex); log.error("Error during overlay rendering", ex);
} }
} }