add note about logging to README
This commit is contained in:
parent
b46eb36beb
commit
7385387d44
1 changed files with 14 additions and 0 deletions
|
|
@ -28,6 +28,20 @@ or your leiningen project.clj:
|
||||||
[cemerick/bandalore "0.0.1"]
|
[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
|
== Usage
|
||||||
|
|
||||||
You should be familiar with http://aws.amazon.com/sqs/[SQS itself]
|
You should be familiar with http://aws.amazon.com/sqs/[SQS itself]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue