Skip to content

Commit

Permalink
Remove log.debug in UploadService. Fixes #472
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeronimo95 committed Nov 24, 2017
1 parent 13ba27e commit 8e3af80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
}
}

version "1.3.2_beta"
version "1.3.3_beta"
group "streama"


Expand Down
4 changes: 2 additions & 2 deletions grails-app/services/streama/UploadService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class UploadService {
}

def upload(request, params = [:]) {
// log.debug(params)
//log.debug(params)
def rawFile = request.getFile('file')
def mimetype = rawFile.contentType
def sha256Hex = DigestUtils.sha256Hex(rawFile.inputStream)
Expand All @@ -52,7 +52,7 @@ class UploadService {

File file = createFileFromUpload(sha256Hex, rawFile, extension, originalFilenameNoExt + extension, contentType, params)

log.debug(file)
//log.debug(file)
return file
}

Expand Down

0 comments on commit 8e3af80

Please sign in to comment.