fix a log statement

pull/144/head
John Shahid 2013-12-13 17:04:55 -05:00
parent 3cb8cdbe1b
commit f97fb7baf6
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ func (self *ClusterConfiguration) AddPotentialServer(server *ClusterServer) {
server.Id = self.currentServerId + 1
self.currentServerId += 1
self.servers = append(self.servers, server)
log.Info("Added server to cluster config: ", server.Id, server.RaftConnectionString, server.ProtobufConnectionString)
log.Info("Added server to cluster config: %d, %s, %s", server.Id, server.RaftConnectionString, server.ProtobufConnectionString)
}
func (self *ClusterConfiguration) GetDatabases() []*Database {