rename debugLog->debugLogf

This commit is contained in:
fiatjaf
2023-07-11 15:25:02 -03:00
parent c03c028142
commit 6cee628149
5 changed files with 9 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ import (
"fmt"
)
func debugLog(str string, args ...any) {
func debugLogf(str string, args ...any) {
// this is such that we don't modify the actual args that may be used outside of this function
printableArgs := make([]any, len(args))