From e3c379d069ffa9661561d25cdbf2f5894a2f8ee8 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Sat, 14 Feb 2026 08:58:38 -0800 Subject: Refactor: project structure, implement dependency injection, and align v2 UI with v1 --- vlog/vlog.go | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 vlog/vlog.go (limited to 'vlog/vlog.go') diff --git a/vlog/vlog.go b/vlog/vlog.go deleted file mode 100644 index ab48478..0000000 --- a/vlog/vlog.go +++ /dev/null @@ -1,25 +0,0 @@ -// vlog -- verbose logger -- wraps log functions and only performs them if "verbose" -package vlog - -import ( - "fmt" -) - -var VERBOSE bool - -func init() { - VERBOSE=false -} - -func Printf(format string, v ...interface{}) { - if VERBOSE { - fmt.Printf(format, v...) - } -} - -func Println(v ...interface{}) { - if VERBOSE { - fmt.Println(v...) - } -} - -- cgit v1.2.3