From 0c7e062a182a5f0dba8f7dbcabde65894e78aec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Starck?= Date: Wed, 18 Mar 2015 11:58:56 -0400 Subject: [PATCH] Also print the broker path. So to know/see where it's actually located. --- cmd/influxd/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/influxd/run.go b/cmd/influxd/run.go index 6c5ce7215b..dc5ca1b336 100644 --- a/cmd/influxd/run.go +++ b/cmd/influxd/run.go @@ -268,7 +268,7 @@ func openBroker(path string, u url.URL, initializing bool, joinURLs []url.URL, w // Open broker so it can feed last index data to the log. if err := b.Open(path); err != nil { - log.Fatalf("failed to open broker: %s", err) + log.Fatalf("failed to open broker at %s : %s", path, err) } // Attach the broker as the finite state machine of the raft log.