When logging when is an error fatal?

后端 未结 4 819
既然无缘
既然无缘 2021-02-01 02:29

In logging frameworks like log4j & log4net you have the ability to log various levels of information. Most of the levels have obvious intentions (such as what a \"Debug\" lo

4条回答
  •  抹茶落季
    2021-02-01 03:31

    An error is Fatal if something is missing or a situation occurs for which the application can simply not continue. Possible examples are a missing required config.file or when an exception 'bubbles up' and is caught by an unhandled exception handler

提交回复
热议问题