Hello, consider the case when you don't really have a message, just a list of k/v pairs: ```go log.Debug("", "dbVersion", dbVersion) ``` this will print ``` 2022-04-12T21:24:54+0200 [DEBUG] myprog: : dbVersion=0 ``` I would like instead to see simply: ``` 2022-04-12T21:24:54+0200 [DEBUG] myprog: dbVersion=0 ``` What do you think?