We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fda5b0 commit a1e0b3aCopy full SHA for a1e0b3a
app/controllers/Application.scala
@@ -117,13 +117,13 @@ object Application extends Controller {
117
def gitCommitIdFromHerokuFile: Option[String] = {
118
val existingFileOpt: Option[File] = herokuMetadataFile()
119
120
- Logger.info(s"Heroku dyno metadata: $existingFileOpt")
+ Logger.debug(s"Heroku dyno metadata: $existingFileOpt")
121
122
for {
123
existingFile <- existingFileOpt
124
commitId <- (Json.parse(new FileInputStream(existingFile)) \ "release" \ "commit").asOpt[String]
125
} yield {
126
- Logger.info(s"Heroku dyno commit id: $commitId")
+ Logger.debug(s"Heroku dyno commit id: $commitId")
127
commitId
128
}
129
0 commit comments