File tree 1 file changed +4
-0
lines changed
pkg/services/provisioning
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -150,21 +150,25 @@ type ProvisioningServiceImpl struct {
150
150
func (ps * ProvisioningServiceImpl ) RunInitProvisioners (ctx context.Context ) error {
151
151
err := ps .ProvisionDatasources (ctx )
152
152
if err != nil {
153
+ ps .log .Error ("Failed to provision data sources" , "error" , err )
153
154
return err
154
155
}
155
156
156
157
err = ps .ProvisionPlugins (ctx )
157
158
if err != nil {
159
+ ps .log .Error ("Failed to provision plugins" , "error" , err )
158
160
return err
159
161
}
160
162
161
163
err = ps .ProvisionNotifications (ctx )
162
164
if err != nil {
165
+ ps .log .Error ("Failed to provision alert notifications" , "error" , err )
163
166
return err
164
167
}
165
168
166
169
err = ps .ProvisionAlerting (ctx )
167
170
if err != nil {
171
+ ps .log .Error ("Failed to provision alerting" , "error" , err )
168
172
return err
169
173
}
170
174
You can’t perform that action at this time.
0 commit comments