hooks: raise exception logs to error level
This commit is contained in:
@@ -225,7 +225,7 @@ public class Hooks implements Callbacks
|
||||
}
|
||||
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)
|
||||
{
|
||||
log.warn("Error during overlay rendering", ex);
|
||||
log.error("Error during overlay rendering", ex);
|
||||
}
|
||||
|
||||
notifier.processFlash(graphics2d);
|
||||
@@ -445,7 +445,7 @@ public class Hooks implements Callbacks
|
||||
}
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
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)
|
||||
{
|
||||
log.warn("Error during overlay rendering", ex);
|
||||
log.error("Error during overlay rendering", ex);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user