Java Doc for ILogger.java in  » Report » pentaho-report » org » pentaho » util » logging » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Report » pentaho report » org.pentaho.util.logging 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.pentaho.util.logging.ILogger

All known Subclasses:   org.pentaho.ui.portlet.BasePortlet,  org.pentaho.core.system.PentahoBase,  org.pentaho.ui.servlet.ServletBase,  org.pentaho.util.logging.SimpleLogger,
ILogger
public interface ILogger (Code)
The Logger is the main interface into the platform's logging subsystem.

Note: Documentation taken from Log4j Javadoc documentation.



Field Summary
final public static  StringACTIVITY_LOG
    
final public static  intDEBUG
     The DEBUG Level designates fine-grained informational events that are most useful to debug an application.
final public static  intERROR
     The ERROR level designates error events that might still allow the application to continue running.
final public static  intFATAL
     The FATAL level designates very severe error events that will presumably lead the application to abort.
final public static  intINFO
     The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.
final public static  StringINSTANCE_LOG
    
final public static  StringSESSION_LOG
    
final public static  StringSOLUTION_LOG
    
final public static  intTRACE
     The TRACE has the lowest possible rank and is intended to turn on all logging.
final public static  intUNKNOWN
    
final public static  intWARN
     The WARN level designates potentially harmful situations.


Method Summary
public  voiddebug(String message)
     Log a message object with the ILogger.DEBUG DEBUG Level.
public  voiddebug(String message, Throwable error)
     Log a message with the ILogger.DEBUG DEBUG level including the stack trace of the Throwable error passed as parameter.
public  voiderror(String message)
     Log a message object with the ILogger.ERROR ERROR Level.
public  voiderror(String message, Throwable error)
     Log a message with the ILogger.ERROR ERROR level including the stack trace of the Throwable error passed as parameter.
public  voidfatal(String message)
     Log a message object with the ILogger.FATAL FATAL Level.
public  voidfatal(String message, Throwable error)
     Log a message with the ILogger.FATAL FATAL level including the stack trace of the Throwable error passed as parameter.
public  intgetLoggingLevel()
     Return the logging level for this Logger.
public  voidinfo(String message)
     Log a message object with the ILogger.INFO INFO Level.
public  voidinfo(String message, Throwable error)
     Log a message with the ILogger.INFO INFO level including the stack trace of the Throwable error passed as parameter.
public  voidsetLoggingLevel(int loggingLevel)
     Set the logging level for this Logger.
public  voidtrace(String message)
     Log a message object with the ILogger.TRACE TRACE Level.
public  voidtrace(String message, Throwable error)
     Log a message with the ILogger.TRACE TRACE level including the stack trace of the Throwable error passed as parameter.
public  voidwarn(String message)
     Log a message object with the ILogger.WARN WARN Level.
public  voidwarn(String message, Throwable error)
     Log a message with the ILogger.WARN WARN level including the stack trace of the Throwable error passed as parameter.

Field Detail
ACTIVITY_LOG
final public static String ACTIVITY_LOG(Code)



DEBUG
final public static int DEBUG(Code)
The DEBUG Level designates fine-grained informational events that are most useful to debug an application.



ERROR
final public static int ERROR(Code)
The ERROR level designates error events that might still allow the application to continue running.



FATAL
final public static int FATAL(Code)
The FATAL level designates very severe error events that will presumably lead the application to abort.



INFO
final public static int INFO(Code)
The INFO level designates informational messages that highlight the progress of the application at coarse-grained level.



INSTANCE_LOG
final public static String INSTANCE_LOG(Code)



SESSION_LOG
final public static String SESSION_LOG(Code)



SOLUTION_LOG
final public static String SOLUTION_LOG(Code)



TRACE
final public static int TRACE(Code)
The TRACE has the lowest possible rank and is intended to turn on all logging.



UNKNOWN
final public static int UNKNOWN(Code)



WARN
final public static int WARN(Code)
The WARN level designates potentially harmful situations.





Method Detail
debug
public void debug(String message)(Code)
Log a message object with the ILogger.DEBUG DEBUG Level.
Parameters:
  message - the message object to log.



debug
public void debug(String message, Throwable error)(Code)
Log a message with the ILogger.DEBUG DEBUG level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



error
public void error(String message)(Code)
Log a message object with the ILogger.ERROR ERROR Level.
Parameters:
  message - the message object to log.



error
public void error(String message, Throwable error)(Code)
Log a message with the ILogger.ERROR ERROR level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



fatal
public void fatal(String message)(Code)
Log a message object with the ILogger.FATAL FATAL Level.
Parameters:
  message - the message object to log.



fatal
public void fatal(String message, Throwable error)(Code)
Log a message with the ILogger.FATAL FATAL level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



getLoggingLevel
public int getLoggingLevel()(Code)
Return the logging level for this Logger. logging level



info
public void info(String message)(Code)
Log a message object with the ILogger.INFO INFO Level.
Parameters:
  message - the message object to log.



info
public void info(String message, Throwable error)(Code)
Log a message with the ILogger.INFO INFO level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



setLoggingLevel
public void setLoggingLevel(int loggingLevel)(Code)
Set the logging level for this Logger.

Valid logging levels are ILogger.TRACE TRACE , ILogger.DEBUG DEBUG , ILogger.INFO INFO , ILogger.WARN WARN , ILogger.ERROR ERROR , and ILogger.FATAL FATAL .
Parameters:
  loggingLevel -




trace
public void trace(String message)(Code)
Log a message object with the ILogger.TRACE TRACE Level.
Parameters:
  message - the message object to log.



trace
public void trace(String message, Throwable error)(Code)
Log a message with the ILogger.TRACE TRACE level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



warn
public void warn(String message)(Code)
Log a message object with the ILogger.WARN WARN Level.
Parameters:
  message - the message object to log.



warn
public void warn(String message, Throwable error)(Code)
Log a message with the ILogger.WARN WARN level including the stack trace of the Throwable error passed as parameter.
Parameters:
  message - the message object to log.
Parameters:
  error - the exception to log, including its stack trace.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.