Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaeng72 committed Dec 11, 2024
1 parent 9605ba1 commit 00d7941
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions search-app/src/cmr/search/api/association.clj
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
(defn api-response
"Creates an association response with the given data response"
([status-code data]
(println "api-response status-code = " status-code "data = " data)
(println "***** JSON PRINT = " (json/generate-string (util/snake-case-data (add-individual-statuses data))))
(if (= 207 status-code)
{:status status-code
:body (json/generate-string (util/snake-case-data (add-individual-statuses data)))
Expand Down
1 change: 0 additions & 1 deletion search-app/src/cmr/search/api/generic_association.clj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
[results]
(let [result-count (count results)
num-errors (assoc/num-errors-in-assoc-results results)]
(println "result count is " result-count "and num errors is " num-errors)
(if (= 0 result-count)
200
(if (= num-errors result-count)
Expand Down
1 change: 0 additions & 1 deletion system-int-test/src/cmr/system_int_test/utils/tag_util.clj
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,6 @@
(defn assert-tag-association-response-mixed?
"Assert the tag association response when status code is 207 multi-status response."
[coll-tag-associations response]
(println "inside ASSERT-TAG-ASSOCIATION-RESPONSE-MIXED?")
(let [{:keys [status body]} response
expected-tag-assoc (map #(coll-tag-association->expected-tag-association % false)
coll-tag-associations)
Expand Down

0 comments on commit 00d7941

Please sign in to comment.