Interface LogService

All Known Implementing Classes:
ConsoleLogProvider, WriterLogProvider

public interface LogService
An interface for a log provider to implement and transform messages to an underlying service provider. Logging implementations can be late bound at runtime using the LogControlEvent.setLogService(LogService) to create a control message and publish to the SEP.
Author:
V12 Technology Ltd.
  • Method Summary

    Modifier and Type Method Description
    void debug​(java.lang.CharSequence msg)  
    void error​(java.lang.CharSequence msg)  
    void fatal​(java.lang.CharSequence msg)  
    void info​(java.lang.CharSequence msg)  
    void trace​(java.lang.CharSequence msg)  
    void warn​(java.lang.CharSequence msg)  
  • Method Details

    • trace

      void trace​(java.lang.CharSequence msg)
    • debug

      void debug​(java.lang.CharSequence msg)
    • info

      void info​(java.lang.CharSequence msg)
    • warn

      void warn​(java.lang.CharSequence msg)
    • error

      void error​(java.lang.CharSequence msg)
    • fatal

      void fatal​(java.lang.CharSequence msg)