File tree 2 files changed +1
-5
lines changed
grails-app/controllers/au/org/ala/alerts
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,6 @@ class AdminController {
243
243
userEmailMap. put(it. email. toLowerCase(),it. id. toString())
244
244
}
245
245
userEmailMap. each {email , id ->
246
- println email
247
246
def user = User . findByEmail(email)
248
247
if (user){
249
248
user. userId = id
@@ -273,7 +272,7 @@ class AdminController {
273
272
return [error : error]
274
273
} catch (Exception e) {
275
274
def error = [error : " Failed calling web service. ${ e.getClass()} ${ e.getMessage()} ${ e} URL= ${ url} ." ]
276
- println error. error
275
+ log . error(error . error)
277
276
return [error : error]
278
277
} finally {
279
278
post. releaseConnection()
Original file line number Diff line number Diff line change @@ -41,9 +41,6 @@ class QueryController {
41
41
queries. each {
42
42
def queryPathParams = getQueryAndFQ(it. queryPath)
43
43
def queryPathUIParams = getQueryAndFQ(it. queryPathForUI)
44
-
45
- println (queryPathParams. q + " \t\t\t\t " + queryPathUIParams. q)
46
-
47
44
def qInconsistent = queryPathParams. q != queryPathUIParams. q
48
45
def fqInconsistent = queryPathParams. fq. size() != queryPathUIParams. fq. size()
49
46
if (! fqInconsistent){
You can’t perform that action at this time.
0 commit comments