From 7385387d446c36571542cb79ee5cc121470b78c0 Mon Sep 17 00:00:00 2001 From: Chas Emerick Date: Tue, 22 Feb 2011 14:07:29 -0500 Subject: [PATCH] add note about logging to README --- README.asciidoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.asciidoc b/README.asciidoc index db94f6f..446ba17 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -28,6 +28,20 @@ or your leiningen project.clj: [cemerick/bandalore "0.0.1"] ---- +== Logging + +I strongly recommend squelching the AWS SDK's very verbose logging +before using Bandalore (the former spews a variety of stuff out on +INFO that I personally think should be in DEBUG or TRACE). You can +do this with this snippet: + +---- +(.setLevel (java.util.logging.Logger/getLogger "com.amazonaws") + java.util.logging.Level/WARNING) +---- + +Translate as necessary if you're using log4j, etc. + == Usage You should be familiar with http://aws.amazon.com/sqs/[SQS itself]