Review suggestions
diff --git a/core/kg/server/server.go b/core/kg/server/server.go
index d39d69d..12c2905 100644
--- a/core/kg/server/server.go
+++ b/core/kg/server/server.go
@@ -25,7 +25,7 @@
 	}
 
 	pwd, _ := os.Getwd()
-	a.Log.Info("Printing current working", log.String("directory", pwd))
+	a.Log.Info("Current working", log.String("directory", pwd))
 	return a, nil
 }
 
@@ -53,6 +53,6 @@
 
 // Shutdown method shuts server down
 func (a *Server) Shutdown() {
-	a.Log.Info("Stoping Server...")
+	a.Log.Info("Stopping Server...")
 	a.srv.GracefulStop()
 }