View Javadoc
1   package com.srv4pos.server.api.infrastructure;
2   
3   /**
4    * Interface for {@link com.srv4pos.server.api.Diagnostics} to run over different engines.
5    * <p>User: Kirill, Date: 09.09.13 16:46</p>
6    */
7   public interface Logger {
8       void log(String message);
9   
10      void log(String messagePattern, Object... objects);
11  }