diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-04-13 23:35:25 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-04-13 23:35:25 +0800 |
commit | 1fa844aaf51beae9129b52a52f51b6602c52ccdb (patch) | |
tree | 725febd840e5dd2b262ff6a1399f26c55884311d /logger/glog/README | |
parent | 5f9346bc7afd64706b3815aec6be2b2650929a6b (diff) | |
parent | 3d57e377a4e95941fd3f572b42e073b40d10d27c (diff) | |
download | go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar.gz go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar.bz2 go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar.lz go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar.xz go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.tar.zst go-tangerine-1fa844aaf51beae9129b52a52f51b6602c52ccdb.zip |
Merge pull request #702 from ethersphere/frontier/blockpool
blockpool stability fixes:
Diffstat (limited to 'logger/glog/README')
-rw-r--r-- | logger/glog/README | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/logger/glog/README b/logger/glog/README index 5f9c11485..c7b1e60cc 100644 --- a/logger/glog/README +++ b/logger/glog/README @@ -19,20 +19,20 @@ The comment from glog.go introduces the ideas: Error, Fatal, plus formatting variants such as Infof. It also provides V-style logging controlled by the -v and -vmodule=file=2 flags. - + Basic examples: - + glog.Info("Prepare to repel boarders") - + glog.Fatalf("Initialization failed: %s", err) - + See the documentation for the V function for an explanation of these examples: - + if glog.V(2) { glog.Info("Starting transaction...") } - + glog.V(2).Infoln("Processed", nItems, "elements") |