diff --git a/common-lib/src/cmr/common/log.clj b/common-lib/src/cmr/common/log.clj index 16bc376e51..83d2fcc760 100644 --- a/common-lib/src/cmr/common/log.clj +++ b/common-lib/src/cmr/common/log.clj @@ -94,8 +94,7 @@ always display but are not considered an Error or Fatal event and are already supported by the base library." [& body] - nil) - ;; `(tiber/report ~@body)) + `(tiber/report ~@body)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Log macros like the above but using a format like all the cool kids do @@ -130,8 +129,7 @@ always display but are not considered an Error or Fatal event and are already supported by the base library." [& body] - nil) - ;; `(tiber/reportf ~@body)) + `(tiber/reportf ~@body)) (defrecord Logger [level ; The level to log out diff --git a/system-int-test/test/cmr/system_int_test/search/collection/collection_concept_retrieval_test.clj b/system-int-test/test/cmr/system_int_test/search/collection/collection_concept_retrieval_test.clj index 01466de232..f276362bc4 100644 --- a/system-int-test/test/cmr/system_int_test/search/collection/collection_concept_retrieval_test.clj +++ b/system-int-test/test/cmr/system_int_test/search/collection/collection_concept_retrieval_test.clj @@ -101,11 +101,11 @@ (testing "retrieval of a deleted collection results in a 404" (let [{:keys [status errors]} (search/get-search-failure-xml-data (search/retrieve-concept - (:concept-id del-coll) - nil - {:throw-exceptions true - :headers {transmit-config/token-header - user1-token}}))] + (:concept-id del-coll) + nil + {:throw-exceptions true + :headers {transmit-config/token-header + user1-token}}))] (is (= 404 status)) (is (= [(format "Concept with concept-id [%s] could not be found." (:concept-id del-coll))]