📄 e393. writing log records only after a condition occurs.txt
字号:
Suppose you are trying to track down an infrequent bug on a production system with copious amounts of debug log messages. In most cases, when the bug occurs, it is not necessary to have the entire history of log messages; only a recent few are needed. To minimize the impact on the system, a MemoryHandler can be used to store a number of log records in memory and then dump them out only if the bug or other condition occurs.
try {
// Create a memory handler with a memory of 100 records
// and dumps the records into the file my.log when a
// SEVERE message is logged
FileHandler fhandler = new FileHandler("my.log");
int numRec = 100;
MemoryHandler mhandler = new MemoryHandler(fhandler, numRec, Level.SEVERE);
// Add to the desired logger
Logger logger = Logger.getLogger("com.mycompany");
logger.addHandler(mhandler);
} catch (IOException e) {
}
try {
// Create a memory handler with a memory of 100 records
// and dumps the records into the file my.log when a
// some abitrary condition occurs
FileHandler fhandler = new FileHandler("my.log");
int numRec = 100;
MemoryHandler mhandler = new MemoryHandler(fhandler, numRec, Level.OFF) {
public synchronized void publish(LogRecord record) {
// Log it before checking the condition
super.publish(record);
boolean condition = false;
if (condition) {
// Condition occurred so dump buffered records
push();
}
}
};
// Add to the desired logger
Logger logger = Logger.getLogger("com.mycompany");
logger.addHandler(mhandler);
} catch (IOException e) {
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -