Skip to content

santanuhaldersfdc/Apex-Logger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Simple Apex Logger Framework

  • This framework supports additing new logging methodologies without changing the existing ones.
  • Just implement the Logger class and write your own logging mechanism.

Simple invoking

try{
    String s;
    s.length();
}
catch(Exception e){
    Logger loggerObj = LoggerFactory.initLogger('LogObjectWriter');
    loggerObj.fillExceptions(e);
    loggerObj.processLog();
}

Releases

No releases published

Packages

No packages published

Languages