diff options
author | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
commit | 4c36742ec8072e645f0b755cdf5e9582ac2a6887 (patch) | |
tree | 7f76889dc1744e8829f957dbe24f6455ab86fa75 /server.go | |
parent | 06a09ecebb3e7631044963e374671edf15d61213 (diff) | |
download | ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar.zst ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.zip |
Rework logging
Logging during a request is at the moment not really needed. Printing
the config to the log was a stupid idea too.
Diffstat (limited to 'server.go')
-rw-r--r-- | server.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,6 +21,6 @@ func runServer() { setupRoutes() address := config.Http.Host + ":" + config.Http.Port - log.Println("Binding to 'http://" + address) + log.Println("Serving content at 'http://" + address + "'.") log.Fatal(http.ListenAndServe(address, nil)) } |