Home Tutorials Log4j TTCCLayout in Log4j



TTCCLayout in Log4j
Posted on: September 12, 2008 at 12:00 AM
In this part of Log4j tutorial we are going to discuss about the TTCCLayout which is extending DateLayout

TTCCLayout in Log4j

     

In this part of Log4j tutorial we are going to discuss about the TTCCLayout which is extending DateLayout. It is another layout format for representing log events output.

It consists of following in its output log event: 

  • time
  • thread
  • category (Level)
  • nested diagnostic context information
  • name (output message)

For example in our output as "16 [main] INFO TTCCLayoutExample.class - First Log".

Note : One of the most important thing while using TTCCLayout is that "You should not use same TTCCLayout instance from the different appenders because it is not fully thread safe.

Here is the example code of TTCCLayoutExample file :

TTCCLayoutExample.java

import org.apache.log4j.*;

public class TTCCLayoutExample {
  static Logger logger = Logger.getLogger("TTCCLayoutExample.class");
  public static void main(String[] args) {
  try
  {
  FileAppender fileappender = 
  new 
FileAppender(new TTCCLayout(),"TTCCoutput.txt");
  logger.addAppender(fileappender);
  logger.info("First Log");  
  logger.info("Second Log");  
  logger.info("Third Log");  
  logger.info("Fourth Log");  
  logger.info("See your TTCCoutput.txt");
  logger.info("Exiting from the Main method  ");
  }catch(Exception e){
  e.printStackTrace();
  }
  }
}

Output:

After compiling and executing TTCCLayoutExample.java you will have following output in  your TTCCoutput.txt file.

16 [main] INFO TTCCLayoutExample.class - First Log
16 [main] INFO TTCCLayoutExample.class - Second Log
16 [main] INFO TTCCLayoutExample.class - Third Log
16 [main] INFO TTCCLayoutExample.class - Fourth Log
16 [main] INFO TTCCLayoutExample.class - See your TTCCoutput.txt
16 [main] INFO TTCCLayoutExample.class - Exiting from the Main method

Download Source Code

     

Related Tags for TTCCLayout in Log4j:
ceventsormdatelayoutformeventlog4jformatoutputtutorialriathislogfortoextendexteitnotputartinnormpartextendingmntoutparjclesendtorwhichstccdiscatispregodiscussarccreprrtxttttutorssrithcclabendinglog4prndo


More Tutorials from this section

Ask Questions?    Discuss: TTCCLayout in Log4j  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.