-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtutorial_48.java
81 lines (73 loc) · 2.01 KB
/
tutorial_48.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import java.util.logging.*;
/**
* LogExample
*/
class LogExample {
//
private final static Logger logr = Logger.getLogger( Logger.GLOBAL_LOGGER_NAME );
//
private static void setupLogger() {
LogManager.getLogManager().reset();
logr.setLevel(Level.ALL);
ConsoleHandler ch = new ConsoleHandler();
ch.setLevel(Level.SEVERE);
logr.addHandler(ch);
try {
FileHandler fh = new FileHandler("myLogger.log", true);
fh.setLevel(Level.FINE);
logr.addHandler(fh);
} catch (java.io.IOException e) {
// don't stop my program but log out to console.
logr.log(Level.SEVERE, "File logger not working.", e);
}
/*
Different Levels in order.
OFF
SEVERE
WARNING
INFO
CONFIG
FINE
FINER
FINEST
ALL
*/
}
//
public static void main(String[] args) throws java.io.IOException {
// setup the logger
setupLogger();
// log some stuff
logr.info("My first log");
logr.fine("My second log");
// test logger in another class.
Test.test();
// purposly throw an error and log it.
try {
throw new java.io.IOException("Fake error message");
}
catch (java.io.IOException e) {
logr.log(Level.SEVERE, "A fake error occurred mate!", e);
// let the error happen after we've logged it
throw e;
}
}
//
public static void methodHere() {
// log from other methods
logr.config("Just doing some stuff");
}
//
}
/**
* TEST
*/
class Test {
// use the same logger that we setup in LogExample class
private final static Logger logr = Logger.getLogger( Logger.GLOBAL_LOGGER_NAME );
//
static void test(){
logr.info("I'm from another class");
}
//
}