github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/updater/sources/log.go (about)

     1  // Copyright 2015 Keybase, Inc. All rights reserved. Use of
     2  // this source code is governed by the included BSD license.
     3  
     4  package sources
     5  
     6  // Log is the logging interface for the sources package
     7  type Log interface {
     8  	Debugf(s string, args ...interface{})
     9  	Infof(s string, args ...interface{})
    10  	Warningf(s string, args ...interface{})
    11  	Errorf(s string, args ...interface{})
    12  }