001package io.ebean.enhance.entity;
002
003/**
004 * Debug message output logging by the entity.
005 */
006public interface MessageOutput {
007
008  /**
009   * Log the debug message.
010   */
011  void println(String message);
012}