e393. writing log records only after a condition occurs.txt

来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 41 行

TXT
41
字号
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 + =
减小字号Ctrl + -
显示快捷键?