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 /error.go | |
initial commit
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'error.go')
| -rw-r--r-- | error.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/error.go b/error.go new file mode 100644 index 0000000..95c6cc3 --- /dev/null +++ b/error.go @@ -0,0 +1,9 @@ +package log + +import ( + origlog "log" +) + +func Error(a ...any) { + origlog.Println(a...) +} |
