Java Logging - where is my log file?

前端 未结 7 882
隐瞒了意图╮
隐瞒了意图╮ 2021-01-01 11:47

I\'m having trouble finding my log files.

I\'m using Java Logging - java.util.logging - in Eclipse 3.7.1 on Windows XP. The relevant lines of my

7条回答
  •  北荒
    北荒 (楼主)
    2021-01-01 11:59

    Where is your logging.properties file located? It should be available in the root of the classpath. As a sanity check, what does the following code print?

    System.out.println(getClass().getClassLoader().getResource("logging.properties"));
    

    If the code is in a static context, use

    System.out.println(ClassName.class.getClassLoader().getResource("logging.properties"));
    

提交回复
热议问题