diff options
| author | Jeff Carr <[email protected]> | 2023-12-28 12:35:05 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-12-28 12:35:05 -0600 |
| commit | 5766e86595bb7bc4c16c37f8ed47bcf0db25d82b (patch) | |
| tree | b3c588102c16c943db7235d6745865b974d30e55 /log.go | |
initial commit
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'log.go')
| -rw-r--r-- | log.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +package log + +import ( + origlog "log" +) + +func Println(a ...any) { + origlog.Println(a...) +} |
