En nuestra filosofía, un registro de errores siempre es causado por un error del programador.¿Cómo hacer que las páginas 404 no escriban un registro de errores?
En juego 1.2.x, prod modo, cualquier acceso a una página no existente se disparará un registro de errores:
ERROR (play) ~
MyController.myAction action not found
Action not found
Action MyController.myAction could not be found. Error raised is No method public static void myAction() was found in class controllers.MyController
play.exceptions.ActionNotFoundException: Action MyController.myAction not found
at play.mvc.ActionInvoker.getActionMethod(ActionInvoker.java:604)
at play.mvc.ActionInvoker.resolve(ActionInvoker.java:85)
at Invocation.HTTP Request(Play!)
Caused by: java.lang.Exception: No method public static void myAction() was found in class controllers.MyController
¿Cómo puedo configurar el juego no para emitir un registro de errores en estos casos? ¿Tal vez un nivel de registro WARN
, como máximo?