Skip to content

Commit

Permalink
Remove periods
Browse files Browse the repository at this point in the history
  • Loading branch information
sjberman committed Dec 26, 2024
1 parent 6e3afb2 commit b5d19aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/mode/static/nginx/agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type NginxUpdaterImpl struct {

// UpdateConfig sends the nginx configuration to the agent.
func (n *NginxUpdaterImpl) UpdateConfig(files int) {
n.Logger.Info("Sending nginx configuration to agent.", "numFiles", files)
n.Logger.Info("Sending nginx configuration to agent", "numFiles", files)
}

// UpdateUpstreamServers sends an APIRequest to the agent to update upstream servers using the NGINX Plus API.
Expand All @@ -32,5 +32,5 @@ func (n *NginxUpdaterImpl) UpdateUpstreamServers() {
return
}

n.Logger.Info("Updating upstream servers using NGINX Plus API.")
n.Logger.Info("Updating upstream servers using NGINX Plus API")
}

0 comments on commit b5d19aa

Please sign in to comment.