🐛 Replace panic with a warning log in pro command

This commit is contained in:
M. Mert Yildiran 2023-03-19 06:06:44 +03:00
parent c32a13094e
commit b90edfe1fb
No known key found for this signature in database
GPG Key ID: DA5D6DCBB758A461

View File

@ -64,7 +64,7 @@ func updateLicense(licenseKey string) {
config.Config.License = licenseKey
err := config.WriteConfig(&config.Config)
if err != nil {
panic(err)
log.Warn().Err(err).Send()
}
go func() {