代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package idemix
import "log"
// logger is used to log debug information.
var logger Logger = LogFunc(log.Printf)
// SetLogger sets the logger instance used for debug and error reporting. The
// logger reference is not mutex-protected so this must be set before calling
// any other library functions.
//
// If a custom logger is not defined, the global logger from the standard
// library's log package is used.
func SetLogger(l Logger) {
logger = l
}
// Logger defines the contract for logging. This interface is explicitly
// defined to be compatible with the logger in the standard library log
// package.
type Logger interface {
Printf(format string, a ...interface{})
}
// LogFunc is a function adapter for logging.
type LogFunc func(format string, a ...interface{})
// Printf is used to create a formatted string log record.
func (l LogFunc) Printf(format string, a ...interface{}) {
l(format, a...)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。