swsnu / ReMon

0 stars 0 forks source link

Remon Logger Interface #98

Closed wynot12 closed 9 years ago

wynot12 commented 9 years ago

DONE

RemonLogger provides below interfaces.

  public void start(final String tag);
  public void end(final String tag);
  public void value(final String tag, final double value);
  public void log(final Level level, final String msg);
  public void event(final String tag, final EventType type);

start and end are wrapper methods of event.