Print warning in resourceD if no resources are specified and report number of resources on startup #20

Merged
blek merged 1 commits from resourced-zero-resources into 0.2-dev 2023-11-16 10:05:27 +01:00
1 changed files with 6 additions and 0 deletions

View File

@ -87,6 +87,12 @@ func main() {
conf.Validate()
if len(conf.Resource) == 0 {
fmt.Println("\x1b[33m[warn] No resources are specified\x1b[0m");
} else {
fmt.Println(fmt.Sprintf("[info] Loaded %d resources", len(conf.Resource)))
}
if ! conf.ResourceD.Enabled {
fmt.Println("\x1b[33m[warn] resourceD is disabled. No resources will be served\x1b[0m")
}