(out io.Writer, isVerbose bool, messageTemplate string, messageArgs ...any)
| 151 | } |
| 152 | |
| 153 | func VerboseOut(out io.Writer, isVerbose bool, messageTemplate string, messageArgs ...any) { |
| 154 | if isVerbose { |
| 155 | fmt.Fprintf(out, messageTemplate, messageArgs...) |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | func BuildTimestampSemVer(dateTime time.Time) string { |
| 160 | endSegment := dateTime.Hour()*10000 + dateTime.Minute()*100 + dateTime.Second() |
no outgoing calls