github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/kbfs/dokan/debug_stderr.go (about)

     1  // Copyright 2016 Keybase Inc. All rights reserved.
     2  // Use of this source code is governed by a BSD
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build debug
     6  // +build debug
     7  
     8  package dokan
     9  
    10  import (
    11  	"log"
    12  )
    13  
    14  const isDebug = true
    15  
    16  func debug(args ...interface{}) {
    17  	log.Println(args...)
    18  }
    19  
    20  func debugf(s string, args ...interface{}) {
    21  	log.Printf(s, args...)
    22  }