Skip to content

Commit

Permalink
whitespace in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
steveyen committed Oct 20, 2014
1 parent 8cbb9fe commit abf4875
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manager_planner.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (mgr *Manager) PlannerLoop() {
}
if VersionGTE(mgr.version, indexDefs.ImplVersion) == false {
log.Printf("planner ended since indexDefs.ImplVersion: %s"+
"> mgr.version: %s", indexDefs.ImplVersion, mgr.version)
" > mgr.version: %s", indexDefs.ImplVersion, mgr.version)
continue
}

Expand All @@ -66,7 +66,7 @@ func (mgr *Manager) PlannerLoop() {
}
if VersionGTE(mgr.version, nodeDefs.ImplVersion) == false {
log.Printf("planner ended since nodeDefs.ImplVersion: %s"+
"> mgr.version: %s", nodeDefs.ImplVersion, mgr.version)
" > mgr.version: %s", nodeDefs.ImplVersion, mgr.version)
continue
}

Expand All @@ -80,7 +80,7 @@ func (mgr *Manager) PlannerLoop() {
}
if VersionGTE(mgr.version, planPIndexesPrev.ImplVersion) == false {
log.Printf("planner ended since planPIndexes.ImplVersion: %s"+
"> mgr.version: %s", planPIndexesPrev.ImplVersion, mgr.version)
" > mgr.version: %s", planPIndexesPrev.ImplVersion, mgr.version)
continue
}

Expand Down

0 comments on commit abf4875

Please sign in to comment.