summaryrefslogtreecommitdiff
path: root/database.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:06:52 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:06:52 +0100
commit4c36742ec8072e645f0b755cdf5e9582ac2a6887 (patch)
tree7f76889dc1744e8829f957dbe24f6455ab86fa75 /database.go
parent06a09ecebb3e7631044963e374671edf15d61213 (diff)
downloadceres-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 'database.go')
-rw-r--r--database.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/database.go b/database.go
index 1efd22e..ea11cfa 100644
--- a/database.go
+++ b/database.go
@@ -52,6 +52,8 @@ func setupDatabase() *sql.DB {
os.Exit(0) // TODO this does not belong to a database - write utils file 'shutdown.go'
}()
+ log.Printf("Connected to database: %s\n", target)
+
return db
}