diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-09-17 02:23:21 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-09-17 02:23:21 -0700 |
| commit | 25fb6f9a465d7371913c2898c6e3f701ed890b07 (patch) | |
| tree | 5e54f2a27fe1b95bf6049b8cb7bc523eb77fd08f /weed/command/filer_replication.go | |
| parent | 779641e9d4d9f843267d0c44f9fc5f2c201462d3 (diff) | |
| download | seaweedfs-25fb6f9a465d7371913c2898c6e3f701ed890b07.tar.xz seaweedfs-25fb6f9a465d7371913c2898c6e3f701ed890b07.zip | |
fix compilation
Diffstat (limited to 'weed/command/filer_replication.go')
| -rw-r--r-- | weed/command/filer_replication.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index 25bca7c97..5fef89fc8 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -49,11 +49,11 @@ func runFilerReplicate(cmd *Command, args []string) bool { for { key, m, err := notificationInput.ReceiveMessage() if err != nil { - glog.Errorf("receive %s: +v", key, err) + glog.Errorf("receive %s: %+v", key, err) continue } if err = replicator.Replicate(key, m); err != nil { - glog.Errorf("replicate %s: +v", key, err) + glog.Errorf("replicate %s: %+v", key, err) } } |
