aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2023-01-24 07:59:44 +0100
committerPřemysl Eric Janouch <p@janouch.name>2023-01-25 00:28:03 +0100
commitc58b7729056c74e1e76fe41f5291ad73773b442e (patch)
tree64367efedff054c2d238c4b7074444f1ef9b9684
parent26ed2dbc77dea089f769180940d452353826eee7 (diff)
downloadxK-c58b7729056c74e1e76fe41f5291ad73773b442e.tar.gz
xK-c58b7729056c74e1e76fe41f5291ad73773b442e.tar.xz
xK-c58b7729056c74e1e76fe41f5291ad73773b442e.zip
xP: use the correct log function
-rw-r--r--xP/xP.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xP/xP.go b/xP/xP.go
index 3effaf0..ba63fe9 100644
--- a/xP/xP.go
+++ b/xP/xP.go
@@ -304,5 +304,5 @@ func main() {
WriteTimeout: 60 * time.Second,
MaxHeaderBytes: 32 << 10,
}
- log.Fatal(s.ListenAndServe())
+ log.Fatalln(s.ListenAndServe())
}