Skip to content

Commit e33bf25

Browse files
committed
[FAB-3420] Fix logger module
All logger modules now match the components. Change-Id: I47637a81ed7c6124e93d828ab2281c83d3290c5c Signed-off-by: Baohua Yang <[email protected]>
1 parent f0c3bfc commit e33bf25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

orderer/configupdate/configupdate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/op/go-logging"
3232
)
3333

34-
var logger = logging.MustGetLogger("orderer/multichain")
34+
var logger = logging.MustGetLogger("orderer/configupdate")
3535

3636
const (
3737
// These should eventually be derived from the channel support once enabled

orderer/sbft/consenter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type consensusStack struct {
3131
backend *backend.Backend
3232
}
3333

34-
var logger = logging.MustGetLogger("orderer/main")
34+
var logger = logging.MustGetLogger("orderer/sbft")
3535

3636
// Consenter interface implementation for new main application
3737
type consenter struct {

0 commit comments

Comments
 (0)