Avoid printStackTrace(); use a logger call instead

前端 未结 7 1221
我寻月下人不归
我寻月下人不归 2020-12-07 11:05

In my application, I am running my code through PMD.It shows me this message:

  • Avoid printStackTrace(); use a logger call instead.
相关标签:
7条回答
  • 2020-12-07 11:29

    If you call printStackTrace() on an exception the trace is written to System.err and it's hard to route it elsewhere (or filter it). Instead of doing this you are adviced to use a logging framework (or a wrapper around multiple logging frameworks, like Apache Commons Logging) and log the exception using that framework (e.g. logger.error("some exception message", e)).

    Doing that allows you to:

    • write the log statement to different locations at once, e.g. the console and a file
    • filter the log statements by severity (error, warning, info, debug etc.) and origin (normally package or class based)
    • have some influence on the log format without having to change the code
    • etc.
    0 讨论(0)
  • 2020-12-07 11:30

    A production quality program should use one of the many logging alternatives (e.g. log4j, logback, java.util.logging) to report errors and other diagnostics. This has a number of advantages:

    • Log messages go to a configurable location.
    • The end user doesn't see the messages unless you configure the logging so that he/she does.
    • You can use different loggers and logging levels, etc to control how much little or much logging is recorded.
    • You can use different appender formats to control what the logging looks like.
    • You can easily plug the logging output into a larger monitoring / logging framework.
    • All of the above can be done without changing your code; i.e. by editing the deployed application's logging config file.

    By contrast, if you just use printStackTrace, the deployer / end user has little if any control, and logging messages are liable to either be lost or shown to the end user in inappropriate circumstances. (And nothing terrifies a timid user more than a random stack trace.)

    0 讨论(0)
  • 2020-12-07 11:31

    It means you should use logging framework like logback or log4j and instead of printing exceptions directly:

    e.printStackTrace();
    

    you should log them using this frameworks' API:

    log.error("Ops!", e);
    

    Logging frameworks give you a lot of flexibility, e.g. you can choose whether you want to log to console or file - or maybe skip some messages if you find them no longer relevant in some environment.

    0 讨论(0)
  • 2020-12-07 11:33

    Almost every logging framework provides a method in which we can pass the throwable object along with a message. Like:

    public trace(Marker marker, String msg, Throwable t);
    

    They print the stacktrace of the throwable object.

    0 讨论(0)
  • 2020-12-07 11:37

    The main reason is that Proguard would remove Log calls from production. Because by logging or printing StackTrace, it is possible to see them (information inside stack trace or Log) inside the Android phone by for example Logcat Reader application. So that it is a bad practice for security. Also, we do not access them during production, it would better to get removed from production. As ProGuard remove all Log calls not stackTrace, so it is better to use Log in catch blocks and let them removed from Production by Proguard.

    0 讨论(0)
  • 2020-12-07 11:47

    In Simple,e.printStackTrace() is not good practice,because it just prints out the stack trace to standard error. Because of this you can't really control where this output goes.

    0 讨论(0)
提交回复
热议问题