File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Flow.Launcher.Core/Plugin Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -219,17 +219,18 @@ public static async Task InitializePluginsAsync()
219
219
}
220
220
catch ( Exception e )
221
221
{
222
- API . LogException ( ClassName , $ "Fail to Init plugin: { pair . Metadata . Name } ", e ) ;
223
222
if ( pair . Metadata . Disabled && pair . Metadata . HomeDisabled )
224
223
{
225
224
// If this plugin is already disabled, do not show error message again
226
225
// Or else it will be shown every time
226
+ API . LogDebug ( ClassName , $ "Skip init for <{ pair . Metadata . Name } >") ;
227
227
}
228
228
else
229
229
{
230
230
pair . Metadata . Disabled = true ;
231
231
pair . Metadata . HomeDisabled = true ;
232
232
failedPlugins . Enqueue ( pair ) ;
233
+ API . LogException ( ClassName , $ "Fail to Init plugin: { pair . Metadata . Name } ", e ) ;
233
234
}
234
235
}
235
236
} ) ) ;
You can’t perform that action at this time.
0 commit comments