Biblioteca Java - Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 mihai 1 /*
2  * LogToFile.java
3  */
4 package lab.scd.logging;
5  
6 import java.util.logging.*;
7 import java.io.*;
8 /**
9  * Class created by @author mihai
10  *
11  * This class is part of the laborator6_logging project.
12  *
13  * Clasa exemplifica modul in care se poate realiza redirectarea mesajelor de logging
14  * catre un fisier.
15  * OBSERVATIE
16  * In configuratia standard hadlerul pentru fisiere va suprascrie fisiserele vechi.
17  */
18 public class LogToFile {
19     public static void main(String args[]){
20         try {
21             /*
22              * Construieste un obiect FileHandler responsabil cu redirectarea
23              * mesajelor de logging catre un fisier.
24              */  
25  
26             boolean append = true;//specifica daca handelrul va suprascrie sau nu fisierele existente
27             FileHandler handler = new FileHandler("my.log",append);
28  
29             // obtine obiectul de tip logger
30             Logger logger = Logger.getLogger("lab.scd.logging");
31  
32             //seteaza handlerul de mesaje responsabil cu directarea acestora
33             logger.addHandler(handler);
34  
35             logger.info("Mesaj de test.");
36  
37         } catch (IOException e) {
38             e.printStackTrace();
39         }
40     }
41 }