Skip to content

Commit

Permalink
[FAB-3420] Fix logger module
Browse files Browse the repository at this point in the history
All logger modules now match the components.

Change-Id: I47637a81ed7c6124e93d828ab2281c83d3290c5c
Signed-off-by: Baohua Yang <baohyang@cn.ibm.com>
  • Loading branch information
yeasy committed Apr 27, 2017
1 parent f0c3bfc commit e33bf25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orderer/configupdate/configupdate.go
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/op/go-logging"
)

var logger = logging.MustGetLogger("orderer/multichain")
var logger = logging.MustGetLogger("orderer/configupdate")

const (
// These should eventually be derived from the channel support once enabled
Expand Down
2 changes: 1 addition & 1 deletion orderer/sbft/consenter.go
Expand Up @@ -31,7 +31,7 @@ type consensusStack struct {
backend *backend.Backend
}

var logger = logging.MustGetLogger("orderer/main")
var logger = logging.MustGetLogger("orderer/sbft")

// Consenter interface implementation for new main application
type consenter struct {
Expand Down

0 comments on commit e33bf25

Please sign in to comment.