backend: log generation errors
This commit is contained in:
parent
daa40e89ba
commit
db215c8271
2 changed files with 15 additions and 15 deletions
|
@ -83,7 +83,10 @@ func main() {
|
|||
|
||||
if !*skipFullGeneration {
|
||||
log.Println("Generating files...")
|
||||
go genAll()
|
||||
go func() {
|
||||
genAll()
|
||||
log.Println("Full generation done")
|
||||
}()
|
||||
}
|
||||
|
||||
for {
|
||||
|
|
Reference in a new issue