Package playn.core

Interface Log.Collector

Enclosing class:
Log

public static interface Log.Collector
Allows for collection of log messages (in addition to standard logging). See Log.setCollector(playn.core.Log.Collector).
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    logged(Log.Level level, String msg, Throwable e)
    Called when a message is logged.
  • Method Details

    • logged

      void logged(Log.Level level, String msg, Throwable e)
      Called when a message is logged.
      Parameters:
      level - the level at which the message was logged.
      msg - the message that was logged.
      e - the exception logged with the message, or null.