From: Rico Tzschichholz Date: Tue, 5 Apr 2022 09:01:11 +0000 (+0200) Subject: valadoc: Include path to doclet in error message X-Git-Tag: 0.56.1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b417c89391cc37cad729e5278f8bbe318d3b8a1b;p=thirdparty%2Fvala.git valadoc: Include path to doclet in error message --- diff --git a/valadoc/valadoc.vala b/valadoc/valadoc.vala index 69642864f..9460439bd 100644 --- a/valadoc/valadoc.vala +++ b/valadoc/valadoc.vala @@ -194,7 +194,7 @@ public class ValaDoc : Object { doclet = modules.create_doclet (pluginpath); if (doclet == null) { - reporter.simple_error (null, "failed to load doclet"); + reporter.simple_error (null, "failed to load doclet '%s'", pluginpath); return null; }