From: Joey Hess Date: Tue, 23 Sep 2008 16:59:43 +0000 (-0400) Subject: include perl error in warning about openid X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/a32c0ecd5164abaf3d767f29d1c144b8c556a780 include perl error in warning about openid it may be some other module missing, this way you can tell by reading the log --- diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm index 1818f5283..f12cbdaa3 100644 --- a/IkiWiki/Plugin/openid.pm +++ b/IkiWiki/Plugin/openid.pm @@ -48,7 +48,7 @@ sub formbuilder_setup (@) { #{{{ # needing to depend on it. eval q{use Net::OpenID::Consumer}; if ($@) { - debug("unable to load Net::OpenID::Consumer, not enabling OpenID login"); + debug("unable to load Net::OpenID::Consumer, not enabling OpenID login ($@)"); return; }