Skip to content

Commit 9793f4f

Browse files
committed
removed printlns
removed printlns
1 parent 46d45c6 commit 9793f4f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

grails-app/controllers/au/org/ala/alerts/AdminController.groovy

+1-2
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,6 @@ class AdminController {
243243
userEmailMap.put(it.email.toLowerCase(),it.id.toString())
244244
}
245245
userEmailMap.each {email, id ->
246-
println email
247246
def user = User.findByEmail(email)
248247
if (user){
249248
user.userId = id
@@ -273,7 +272,7 @@ class AdminController {
273272
return [error: error]
274273
} catch (Exception e) {
275274
def error = [error: "Failed calling web service. ${e.getClass()} ${e.getMessage()} ${e} URL= ${url}."]
276-
println error.error
275+
log.error(error.error)
277276
return [error: error]
278277
} finally {
279278
post.releaseConnection()

grails-app/controllers/au/org/ala/alerts/QueryController.groovy

-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ class QueryController {
4141
queries.each {
4242
def queryPathParams = getQueryAndFQ(it.queryPath)
4343
def queryPathUIParams = getQueryAndFQ(it.queryPathForUI)
44-
45-
println(queryPathParams.q +"\t\t\t\t"+queryPathUIParams.q)
46-
4744
def qInconsistent = queryPathParams.q != queryPathUIParams.q
4845
def fqInconsistent = queryPathParams.fq.size() != queryPathUIParams.fq.size()
4946
if(!fqInconsistent){

0 commit comments

Comments
 (0)