Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1580)

Unified Diff: cmd/jujud/agent.go

Issue 8674043: deuglify logging for main packages. (Closed)
Patch Set: deuglify logging for main packages. Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cmd/juju/synctools.go ('k') | cmd/jujud/machine.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cmd/jujud/agent.go
=== modified file 'cmd/jujud/agent.go'
--- cmd/jujud/agent.go 2013-04-05 13:47:17 +0000
+++ cmd/jujud/agent.go 2013-04-11 17:51:37 +0000
@@ -71,7 +71,7 @@
select {
case info := <-done:
if info.err != nil {
- log.Errorf("cmd/jujud: %s: %v", tasks[info.index], info.err)
+ log.Errorf("%s: %v", tasks[info.index], info.err)
logged[info.index] = true
err = info.err
break waiting
@@ -85,7 +85,7 @@
for i, t := range tasks {
err1 := t.Stop()
if !logged[i] && err1 != nil {
- log.Errorf("cmd/jujud: %s: %v", t, err1)
+ log.Errorf("%s: %v", t, err1)
logged[i] = true
}
if moreImportant(err1, err) {
@@ -131,25 +131,25 @@
// runLoop repeatedly calls runOnce until it returns worker.ErrTerminateAgent
// or an upgraded error, or a value is received on stop.
func runLoop(runOnce func() error, stop <-chan struct{}) error {
- log.Noticef("cmd/jujud: agent starting")
+ log.Noticef("agent starting")
for {
err := runOnce()
if err == worker.ErrTerminateAgent {
- log.Noticef("cmd/jujud: entity is terminated")
+ log.Noticef("entity is terminated")
return nil
}
if isFatal(err) {
return err
}
if err == nil {
- log.Errorf("cmd/jujud: agent died with no error")
+ log.Errorf("agent died with no error")
} else {
- log.Errorf("cmd/jujud: %v", err)
+ log.Errorf("%v", err)
}
if !isleep(retryDelay, stop) {
return nil
}
- log.Noticef("cmd/jujud: rerunning agent")
+ log.Noticef("rerunning agent")
}
panic("unreachable")
}
« no previous file with comments | « cmd/juju/synctools.go ('k') | cmd/jujud/machine.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b