summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed AbdelHalim <[email protected]>2025-09-10 16:55:27 +0200
committerAhmed AbdelHalim <[email protected]>2025-09-10 16:55:27 +0200
commitae458c03646120ae440bbce863f40a09fd4dd559 (patch)
treeeee5616281ad3310bf461dda5cfef2758c6f8fc9
parent9c7653c461f523228096bbe4c014abcb1e02d96e (diff)
Update logging messages
-rw-r--r--internal/wireguard.go8
-rw-r--r--main.go16
2 files changed, 12 insertions, 12 deletions
diff --git a/internal/wireguard.go b/internal/wireguard.go
index ebfa0bb..2efcafa 100644
--- a/internal/wireguard.go
+++ b/internal/wireguard.go
@@ -95,14 +95,14 @@ func ToggleConnection(name string) ([]byte, error) {
func stopActiveConnections(activeConnections []*WireGuardConnection) ([]byte, error) {
var output []byte
for _, activeConnection := range activeConnections {
- log.Printf("Stopping connection %s.", activeConnection.Name)
+ log.Printf("Stopping connection %s", activeConnection.Name)
cmd := exec.Command("sudo", "wg-quick", "down", activeConnection.Name)
out, err := cmd.CombinedOutput()
if err != nil {
return nil, err
}
output = append(output, out...)
- log.Printf("Successfully stopped connection %s.", activeConnection.Name)
+ log.Printf("Successfully stopped connection %s", activeConnection.Name)
}
return output, nil
}
@@ -111,13 +111,13 @@ func startConnection(connection *WireGuardConnection) ([]byte, error) {
if connection.Active {
return nil, nil
}
- log.Printf("Starting connection %s.", connection.Name)
+ log.Printf("Starting connection %s", connection.Name)
cmd := exec.Command("sudo", "wg-quick", "up", connection.Name)
output, err := cmd.CombinedOutput()
if err != nil {
return nil, err
}
- log.Printf("Successfully started connection %s.", connection.Name)
+ log.Printf("Successfully started connection %s", connection.Name)
return output, nil
}
diff --git a/main.go b/main.go
index cc89361..e9137a2 100644
--- a/main.go
+++ b/main.go
@@ -75,7 +75,7 @@ func (s *Server) handleHome(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html; charset=utf-8")
if err := s.templates.ExecuteTemplate(w, "index.html", nil); err != nil {
- log.Printf("Error rendering template: %v", err)
+ log.Printf("Failed to render template: %v", err)
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
}
}
@@ -89,7 +89,7 @@ func (s *Server) handleConnectionsAPI(w http.ResponseWriter, r *http.Request) {
connections, err := internal.GetConnections()
if err != nil {
- log.Printf("Error getting connections: %v", err)
+ log.Printf("Failed to get connections: %v", err)
s.sendErrorResponse(w, fmt.Sprintf("%v", err), http.StatusInternalServerError)
return
}
@@ -120,7 +120,7 @@ func (s *Server) handleToggleAPI(w http.ResponseWriter, r *http.Request) {
output, err := internal.ToggleConnection(req.Name)
if err != nil {
- log.Printf("Error toggling connection %s: %v (output: %s)", req.Name, err, string(output))
+ log.Printf("Failed to toggle connection %s: %v (output: %s)", req.Name, err, string(output))
s.sendErrorResponse(w, err.Error(), http.StatusInternalServerError)
return
}
@@ -142,7 +142,7 @@ func (s *Server) handleStatusAPI(w http.ResponseWriter, r *http.Request) {
status, err := internal.GetStatus()
if err != nil {
- log.Printf("Error getting status: %v", err)
+ log.Printf("Failed to get status: %v", err)
s.sendErrorResponse(w, fmt.Sprintf("%v", err), http.StatusInternalServerError)
return
}
@@ -211,7 +211,7 @@ func (s *Server) handleLogin(w http.ResponseWriter, r *http.Request) {
"Error": "Wrong password",
}
if err := s.templates.ExecuteTemplate(w, "login.html", templateData); err != nil {
- log.Printf("Error rendering login template: %v", err)
+ log.Printf("Failed to render login template: %v", err)
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
}
}
@@ -229,7 +229,7 @@ func (s *Server) showLoginForm(w http.ResponseWriter, r *http.Request) {
"IsHTTPS": isHTTPS,
}
if err := s.templates.ExecuteTemplate(w, "login.html", templateData); err != nil {
- log.Printf("Error rendering login template: %v", err)
+ log.Printf("Failed to render login template: %v", err)
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
}
}
@@ -238,7 +238,7 @@ func (s *Server) loginUser(w http.ResponseWriter, r *http.Request) {
// Create session
sessionID, expires, err := s.sessionManager.CreateSession()
if err != nil {
- log.Printf("Error creating session: %v", err)
+ log.Printf("Failed to create session: %v", err)
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
@@ -284,7 +284,7 @@ func (s *Server) handleLogout(w http.ResponseWriter, r *http.Request) {
// Start starts the HTTP server
func (s *Server) Start() error {
addr := s.config.GetAddress()
- log.Printf("Starting on http://%s\n", addr)
+ log.Printf("Starting on http://%s", addr)
return http.ListenAndServe(addr, s.mux)
}