Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use logs in Hyperledger Fabric Node.js Development

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the knowledge of "how to use logs in Hyperledger Fabric Node.js development". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Overview

Hyperledger fabric node.js client logging uses the node.js winston development package. Logging is initialized when the node.js application first loads the hyperledger structure package. All HyperledgeFabric client objects will use the same settings (peer, orderer, ChannelEventHub).

Const Client = require ('fabric-client'); / / the logging is now set

There are four levels of logging:

Info, message.

Warn, warning.

Error, error.

Debug, debugging.

By default, info, warn, and error entries are sent to the Control Station console and debug is not logged.

How to change logging

Logging for HyperledgeFabric clients is controlled by the configuration settings hfc-logging and the environment settings HFC_LOGGING.

Change the log setting in the default.json configuration file to an entry:

"hfc-logging": "{'debug':'console',' info':'console'}"

Use environment settings to override and modify the configuration:

Export HFC_LOGGING=' {"debug": "console", "info": "console"}'

Logging can use files to write entries by specifying the file location as a level value.

Export HFC_LOGGING=' {"debug": "/ temp/debug.log", "info": "console"} 'uses logging in the application

When you need to record entries in application code and HyperledgeFabric client entries, use the following to access the same logger. After version 1.2:

Const logger = Client.getLogger ('APPLICATION')

Before 1.2:

Const sdkUtils = require ('fabric-client/lib/utils.js'); const logger = sdkUtils.getLogger (' APPLICATION')

Log:

Const log_info = 'Sometext';logger.info ('% s infotext', log_info); / / will log// info: [APPLICATION]: Sometext infotextlogger.warn ('% s warntext', log_info); / / will log// warn: [APPLICATION]: Sometext warntextlogger.error ('% s errortext', log_info); / / will log// error: [APPLICATION]: Sometext errortextlogger.debug ('% s debugtext', log_info) / / will log// debug: [APPLICATION]: this is the end of Sometext debugtext's "how to use logs in Hyperledger Fabric Node.js Development". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report