From 6a97276c0d5becfa7f11c0ca744ac8f4f4933d87 Mon Sep 17 00:00:00 2001 From: Phuong Pham Date: Sun, 16 Feb 2025 14:35:08 -0600 Subject: [PATCH] rollback log --- fs/log.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/fs/log.go b/fs/log.go index 9feadd304..5088d1600 100644 --- a/fs/log.go +++ b/fs/log.go @@ -6,7 +6,6 @@ import ( "fmt" "log" "os" - "runtime/debug" "github.com/sirupsen/logrus" ) @@ -271,14 +270,6 @@ func Logf(o interface{}, text string, args ...interface{}) { LogLevelPrintf(LogLevelNotice, o, text, args...) } -func LogMe(text string) { - LogLevelPrint(LogLevelInfo, nil, text) -} - -func LogCallStack() { - debug.PrintStack() -} - // Infoc writes info on transfers for this Object or Fs. Use this // level for logging transfers, deletions and things which should // appear with the -v flag.