github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/core/charm/repository/logger.go (about)

     1  // Copyright 2020 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package repository
     5  
     6  // Logger describes a logging API.
     7  type Logger interface {
     8  	Errorf(string, ...interface{})
     9  	Tracef(string, ...interface{})
    10  }