Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 1ae382a

Browse files
committed
fix(aws): code style of log interface
Signed-off-by: danmx <[email protected]>
1 parent 2c59a27 commit 1ae382a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545

4646
### Fix
4747
- profile to command line parser
48+
- **aws:** code style of log interface
4849
- **aws:** log interface
4950
- **bazel:** semi-hermitizing Go SDK
5051
- **ci:** disable steps that use secrets on PRs ([#187](https://github.com/danmx/sigil/issues/187))

Diff for: pkg/aws/log/log.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ func NewTraceLogger() aws.Logger {
1414
}
1515

1616
// Log logs the parameters to the stdlib logger. See log.Println.
17-
func (l traceLogger) Log(args ...interface{}) {
17+
func (traceLogger) Log(args ...interface{}) {
1818
logr.Trace(args...)
1919
}

0 commit comments

Comments
 (0)