nomad: remove noisy logs

This commit is contained in:
Armon Dadgar
2015-09-21 11:59:42 -07:00
parent 72d926547b
commit 7fa2ffbd60
2 changed files with 0 additions and 15 deletions

View File

@@ -181,7 +181,6 @@ func NewServer(config *Config) (*Server, error) {
// Initialize the RPC layer
// TODO: TLS...
logger.Printf("[INFO] nomad: starting RPC layer")
if err := s.setupRPC(nil); err != nil {
s.Shutdown()
logger.Printf("[ERR] nomad: failed to start RPC layer: %s", err)
@@ -189,7 +188,6 @@ func NewServer(config *Config) (*Server, error) {
}
// Initialize the Raft server
logger.Printf("[INFO] nomad: starting Raft")
if err := s.setupRaft(); err != nil {
s.Shutdown()
logger.Printf("[ERR] nomad: failed to start Raft: %s", err)
@@ -197,7 +195,6 @@ func NewServer(config *Config) (*Server, error) {
}
// Initialize the wan Serf
logger.Printf("[INFO] nomad: starting serf WAN")
s.serf, err = s.setupSerf(config.SerfConfig, s.eventCh, serfSnapshot)
if err != nil {
s.Shutdown()
@@ -206,7 +203,6 @@ func NewServer(config *Config) (*Server, error) {
}
// Intialize the scheduling workers
logger.Printf("[INFO] nomad: starting workers")
if err := s.setupWorkers(); err != nil {
s.Shutdown()
logger.Printf("[ERR] nomad: failed to start workers: %s", err)

View File

@@ -1,11 +0,0 @@
---
layout: "docs"
page_title: "Running and Stopping"
sidebar_current: "docs-agent-running"
description: |-
Learn about the the lifecycle of a Nomad agent, running and stopping.
---
# Running and Stopping
TODO