fabric-network
Version:
SDK for writing node.js applications to interact with Hyperledger Fabric. This package encapsulates the APIs to connect to a Fabric network, submit transactions and perform queries against the ledger.
14 lines • 538 B
JavaScript
/*
* Copyright 2018 IBM All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.getLogger = void 0;
// reuse the client implementation of the logger as we are part of the client
// abstracted out in case we want to change this in the future.
const fabric_common_1 = require("fabric-common");
// eslint-disable-next-line @typescript-eslint/unbound-method
exports.getLogger = fabric_common_1.Utils.getLogger;
//# sourceMappingURL=logger.js.map
;