Skip to content

Commit dc3eb8c

Browse files
Adding debug logging
1 parent 8319292 commit dc3eb8c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,8 @@ goVivid.iml
2222
*.zip
2323

2424
*.sha1
25+
26+
*.iml
27+
28+
wrapper/*
29+
grailsw*

SaasyGrailsPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class SaasyGrailsPlugin {
22
// the plugin version
33
def groupId = "com.bertramlabs.plugins"
4-
def version = "0.2.1-SNAPSHOT"
4+
def version = "0.2.2-SNAPSHOT"
55
// the version or versions of Grails the plugin is designed for
66
def grailsVersion = "2.4 > *"
77
// resources that are excluded from plugin packaging

application.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#Grails Metadata file
22
#Tue May 19 16:09:53 PDT 2015
33
app.grails.version=2.4.4
4+
app.groovy.version=2.3.7
45
app.name=SaasyPlugin

grails-app/services/com/getsaasy/plugin/AbstractSaasyService.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ abstract class AbstractSaasyService {
100100
}
101101
apiParams.uri = (baseUrl+path)
102102
def output = doHttp(apiParams,method)
103-
//println output
103+
log.debug "doApiCall output: ${output}"
104104
if (output.status == 401) {
105105
apiParams.urlParams.token = newToken()
106106
if (apiParams.urlParams.token) output = doHttp(apiParams,method)

0 commit comments

Comments
 (0)