QGIS – How to Tell Which QGIS Plugins Are Slow to Load

qgisqgis-plugins

We have new users of QGIS in our office that are dismayed immediately by the startup time of QGIS – which hangs on the 'Restoring Loaded Plugins' message on the splash screen.

Is there a way to tell which plugins take long to load and are causing QGIS to load slowly? This can sometimes take ~1minute!

The only solution so far is to disable almost every plugin that comes with the default installation and bring back the plugins one by one as you need them – but so far we haven't figured out which default plugin is causing the slow load time.

Best Answer

Hidden feature that I never made a UI for

import pprint
pprint.pprint(qgis.utils.plugin_times)

Run it in the Python console

Also see the plugin called Plugin Load Times: (https://gitlab.com/GIS-projects/Plugin-Load-Times)

Related Question