public class Logging
extends java.lang.Object
Assistance class to use when logging.
For chaincode/contract implementations please use java.util.logging or your
own framework. All the Hyperledger Fabric code here is logged in loggers with
names starting org.hyperledger
Control of this is via the environment variables
'CORE_CHAINCODE_LOGGING_LEVEL' this takes a string that matches the following
Java.util.logging levels (case insensitive)
CRITICAL, ERROR -> Level.SEVERE, WARNING -> Level.WARNING, INFO -> Level.INFO
NOTICE -> Level.CONFIG, DEBUG -> Level.FINEST