diff options
Diffstat (limited to 'src/java/org/apache/poi/util/SystemOutLogger.java')
-rw-r--r-- | src/java/org/apache/poi/util/SystemOutLogger.java | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/java/org/apache/poi/util/SystemOutLogger.java b/src/java/org/apache/poi/util/SystemOutLogger.java index 8eba4b0063..3567c40808 100644 --- a/src/java/org/apache/poi/util/SystemOutLogger.java +++ b/src/java/org/apache/poi/util/SystemOutLogger.java @@ -14,16 +14,14 @@ See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ - package org.apache.poi.util; - - /** - * A logger class that strives to make it as easy as possible for - * developers to write log calls, while simultaneously making those - * calls as cheap as possible by performing lazy evaluation of the log - * message. + * An implementation of the {@link POILogger} which uses System.out.println. + * + * This can be used to provide simply output from applications, however the + * suggested approach in production systems is to use the {@link CommonsLogger} + * and configure proper log-handling via Apache Commons Logging. */ public class SystemOutLogger implements POILogger { /** |