Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Commit df3f3f3

Browse files
authored
Merge pull request #19 from shopsmart/err-to-warn
Log/err to log/warn during retries
2 parents 9f72827 + d3a820d commit df3f3f3

File tree

3 files changed

+35
-9
lines changed

3 files changed

+35
-9
lines changed

project.clj

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.github.shopsmart/clj-foundation "0.9.19"
1+
(defproject com.github.shopsmart/clj-foundation "0.9.20"
22
:description "Common patterns enabling simpler to be easier and harder to be possibler."
33
:url "https://github.com/shopsmart/clj-foundation"
44

@@ -11,11 +11,16 @@
1111
[lein-kibit "0.1.2"] ; lein kibit - Linter that suggests more idiomatic forms
1212
]
1313

14+
:repl {:jvm-opts ["-Dlog4j.configurationFile=log4j2-subproject.xml"]}
15+
1416
;; Used in clj-foundation.config unit tests
1517
:jvm-opts ["-DCONFIG-PROD=/tmp/_test-config-prod.edn"]
1618

19+
1720
:dependencies [[org.clojure/clojure "1.8.0"]
1821
[org.clojure/tools.logging "0.3.1"]
22+
[org.slf4j/slf4j-api "1.7.21"]
23+
[org.slf4j/slf4j-simple "1.7.21"]
1924
[org.clojure/data.csv "0.1.3"]
2025
[org.clojure/data.xml "0.0.8"]
2126
[prismatic/schema "1.1.1"]

resources/log4j2-subproject.xml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration status="TRACE">
3+
<Properties>
4+
<Property name="format">%date{ISO8601} [%level{length=1}] (%thread) %logger: %message%n</Property>
5+
</Properties>
6+
7+
<Appenders>
8+
<Console name="Console" target="SYSTEM_OUT">
9+
<PatternLayout pattern="${format}"/>
10+
</Console>
11+
</Appenders>
12+
13+
<Loggers>
14+
<Logger name="org.apache.http" level="WARN"/>
15+
<Logger name="com.amazonaws" level="WARN"/>
16+
17+
<Root level="TRACE">
18+
<AppenderRef ref="Console" level="INFO"/>
19+
</Root>
20+
</Loggers>
21+
</Configuration>

src/clj_foundation/errors.clj

+8-8
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@
134134
res
135135
(do
136136
(if (instance? Throwable res)
137-
(log/error res "A failure occurred; retrying...")
138-
(log/error (str "A failure occurred; retrying... [" (pr-str res) "]")))
137+
(log/warn res "A failure occurred; retrying...")
138+
(log/warn (str "A failure occurred; retrying... [" (pr-str res) "]")))
139139
(Thread/sleep pause-millis)
140140
(recur (dec tries) pause-millis f args))))))
141141

@@ -152,7 +152,7 @@
152152
{:exception e})))]
153153
(if (:exception res)
154154
(do
155-
(log/error (:exception res) "A failure occurred; retrying...")
155+
(log/warn (:exception res) "A failure occurred; retrying...")
156156
(Thread/sleep pause-millis)
157157
(recur (dec tries) pause-millis f args))
158158
(:value res))))
@@ -265,15 +265,15 @@
265265
(if (failure? result)
266266
(do
267267
(case (retry? j result)
268-
:ABORT-MAX-RETRIES (do (log/error (RuntimeException. (str "MAX-RETRIES(" tries ")[" job-name "]: " (.getMessage result)) result))
268+
:ABORT-MAX-RETRIES (do (log/warn (RuntimeException. (str "MAX-RETRIES(" tries ")[" job-name "]: " (.getMessage result)) result))
269269
(throw result))
270-
:ABORT-FATAL-ERROR (do (log/error (RuntimeException. (str "FATAL[" job-name "]: " (.getMessage result)) result))
270+
:ABORT-FATAL-ERROR (do (log/warn (RuntimeException. (str "FATAL[" job-name "]: " (.getMessage result)) result))
271271
(throw result))
272-
:RETRY-FAILURE (do (log/error result (str "RETRY[" job-name "]; " (type result) ": " (.getMessage result)))
272+
:RETRY-FAILURE (do (log/warn result (str "RETRY[" job-name "]; " (type result) ": " (.getMessage result)))
273273
(Thread/sleep pause-millis))
274-
:RETRY-TIMEOUT (do (log/error (RuntimeException. "Timeout.") (str "RETRY[" job-name "]: Took longer than " timeout-millis " ms."))
274+
:RETRY-TIMEOUT (do (log/warn (RuntimeException. "Timeout.") (str "RETRY[" job-name "]: Took longer than " timeout-millis " ms."))
275275
(Thread/sleep pause-millis))
276-
:else (throw (IllegalStateException. "Program Error! We should never get here.")))
276+
:else (throw (IllegalStateException. "Program Error! We should never get here.")))
277277
(recur (update-in j [:retries] inc)))
278278
result)))))
279279

0 commit comments

Comments
 (0)