summaryrefslogtreecommitdiff
path: root/bool.go
diff options
context:
space:
mode:
Diffstat (limited to 'bool.go')
-rw-r--r--bool.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/bool.go b/bool.go
deleted file mode 100644
index 7bcefa2..0000000
--- a/bool.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2024 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package log
-
-func Bool(b bool, a ...any) {
- if !b {
- return
- }
- realPrintln(a...)
-}