Skip to content

Commit

Permalink
add period to comments
Browse files Browse the repository at this point in the history
  • Loading branch information
miampf committed Jan 31, 2024
1 parent e2200c4 commit 147e7c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1241,19 +1241,19 @@ type tfContextLogger struct {
}

// Debug takes a format string and arguments as an input and logs
// them using tflog.Debug
// them using tflog.Debug.
func (l *tfContextLogger) Debug(format string, args ...any) {
tflog.Debug(l.ctx, fmt.Sprintf(format, args...))
}

// Info takes a format string and arguments as an input and logs
// them using tflog.Info
// them using tflog.Info.
func (l *tfContextLogger) Info(format string, args ...any) {
tflog.Info(l.ctx, fmt.Sprintf(format, args...))
}

// Warn takes a format string and arguments as an input and logs
// them using tflog.Warn
// them using tflog.Warn.
func (l *tfContextLogger) Warn(format string, args ...any) {
tflog.Warn(l.ctx, fmt.Sprintf(format, args...))
}
Expand Down

0 comments on commit 147e7c2

Please sign in to comment.