Skip to content

Commit

Permalink
Startup log lines start with captial letters
Browse files Browse the repository at this point in the history
**What**
- use capital letters during the server startup log lines. This will
  keep the logs consistent

Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
  • Loading branch information
LucasRoesler authored and alexellis committed Jul 20, 2020
1 parent 24f4d8d commit 39236d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -145,10 +145,10 @@ func runController(setup serverSetup) {

endpointsInformer := kubeInformerFactory.Core().V1().Endpoints()

log.Println("waiting for openfaas CRD cache sync")
log.Println("Waiting for openfaas CRD cache sync")
faasInformerFactory.WaitForCacheSync(stopCh)
setup.profileInformerFactory.WaitForCacheSync(stopCh)
log.Println("cache sync complete")
log.Println("Cache sync complete")
go faasInformerFactory.Start(stopCh)
go kubeInformerFactory.Start(stopCh)
go setup.profileInformerFactory.Start(stopCh)
Expand Down

0 comments on commit 39236d9

Please sign in to comment.