summaryrefslogtreecommitdiff
path: root/bool.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-05 06:28:51 -0600
committerJeff Carr <[email protected]>2025-02-05 06:28:51 -0600
commitf793a05288247ac6af1d44fbc3d843b408d51596 (patch)
tree51972db1c0d1794f15eaa885d45aa3bc52e80769 /bool.go
parent1631c72f706e7ffcb14f9682a2f8c0a87c22fcac (diff)
switch to Disabled()
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...)
-}