We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e3afb2 commit b5d19aaCopy full SHA for b5d19aa
internal/mode/static/nginx/agent/agent.go
@@ -22,7 +22,7 @@ type NginxUpdaterImpl struct {
22
23
// UpdateConfig sends the nginx configuration to the agent.
24
func (n *NginxUpdaterImpl) UpdateConfig(files int) {
25
- n.Logger.Info("Sending nginx configuration to agent.", "numFiles", files)
+ n.Logger.Info("Sending nginx configuration to agent", "numFiles", files)
26
}
27
28
// UpdateUpstreamServers sends an APIRequest to the agent to update upstream servers using the NGINX Plus API.
@@ -32,5 +32,5 @@ func (n *NginxUpdaterImpl) UpdateUpstreamServers() {
32
return
33
34
35
- n.Logger.Info("Updating upstream servers using NGINX Plus API.")
+ n.Logger.Info("Updating upstream servers using NGINX Plus API")
36
0 commit comments