Index: src/org/openstreetmap/josm/gui/MainApplication.java
===================================================================
--- src/org/openstreetmap/josm/gui/MainApplication.java	(revision 18360)
+++ src/org/openstreetmap/josm/gui/MainApplication.java	(working copy)
@@ -1222,7 +1222,10 @@
     static void loadLatePlugins(SplashScreen splash, SplashProgressMonitor monitor, Collection<PluginInformation> pluginsToLoad) {
         monitor.indeterminateSubTask(tr("Loading plugins"));
         PluginHandler.loadLatePlugins(splash, pluginsToLoad, monitor.createSubTaskMonitor(1, false));
-        GuiHelper.runInEDTAndWait(() -> toolbar.refreshToolbarControl());
+        GuiHelper.runInEDTAndWait(() -> {
+            toolbar.enableInfoAboutMissingAction();
+            toolbar.refreshToolbarControl();
+        });
     }
 
     private static void processOffline(ProgramArguments args) {
Index: src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java
===================================================================
--- src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java	(revision 18360)
+++ src/org/openstreetmap/josm/gui/preferences/ToolbarPreferences.java	(working copy)
@@ -582,6 +582,7 @@
 
     public final JToolBar control = new JToolBar();
     private final Map<Object, ActionDefinition> buttonActions = new ConcurrentHashMap<>(30);
+    private boolean showInfoAboutMissingActions;
 
     @Override
     public PreferenceSetting createPreferenceSetting() {
@@ -1112,7 +1113,7 @@
                 ActionDefinition a = actionParser.loadAction(s);
                 if (a != null) {
                     result.add(a);
-                } else {
+                } else if (showInfoAboutMissingActions) {
                     Logging.info("Could not load tool definition "+s);
                 }
             }
@@ -1292,4 +1293,14 @@
     public void taggingPresetsModified() {
         refreshToolbarControl();
     }
+
+    /**
+     * Call with {@code true} when all plugins were loaded.
+     * @since xxx
+     */
+    public void enableInfoAboutMissingAction() {
+        this.showInfoAboutMissingActions = true;
+    }
+
+
 }
