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.48.25~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ca7ccf13215ed04ed04a755a5c013424d1d0a4b;p=thirdparty%2Fvala.git valadoc: Include path to doclet in error message --- diff --git a/valadoc/valadoc.vala b/valadoc/valadoc.vala index 8f57c7d15..b51845672 100644 --- a/valadoc/valadoc.vala +++ b/valadoc/valadoc.vala @@ -186,7 +186,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; }