Very basic data enrichment via LOBID/GND

This commit is contained in:
Simon Martens
2024-11-19 18:51:42 +01:00
parent 7dc603df2c
commit c86fed3cbe
12 changed files with 368 additions and 50827 deletions

View File

@@ -57,6 +57,14 @@ func Info(msg ...string) {
}
}
func Debug(msg ...string) {
if len(msg) > 0 {
for _, m := range msg {
slog.Debug(m)
}
}
}
func SetDebug() {
slog.SetLogLoggerLevel(slog.LevelDebug)
}