I am developing NetBeans as an IDE for Java. When Netbeans surrounds a statement in a try-catch block, it uses something like Logger.getLogger(MyTestClass.class.getName()).log(Level.SEVERE, null, ex); in the catch area. My questions
- What and where is the log file created by this sentence?
- Should I create it? If so, how?
Greetings!
source share