Skip to content

Commit

Permalink
Merge pull request #67 from newrelic/mwhelan/gentleError
Browse files Browse the repository at this point in the history
Revise debug log message
  • Loading branch information
Matt Whelan authored May 5, 2021
2 parents 5b70811 + 4373dc4 commit 4c26b3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func pollLogServer(logServer *logserver.LogServer, batch *telemetry.Batch) {
for _, platformLog := range logServer.PollPlatformChannel() {
inv := batch.AddTelemetry(platformLog.RequestID, platformLog.Content)
if inv == nil {
util.Debugf("Failed to add platform log for request %v", platformLog.RequestID)
util.Debugf("Skipping platform log for request %v", platformLog.RequestID)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion util/extension.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package util

const (
Name = "newrelic-lambda-extension"
Version = "1.2.4"
Version = "1.2.5"
Id = Name + ":" + Version
)

0 comments on commit 4c26b3b

Please sign in to comment.