diff options
author | alcoheca <alcoheca@svn> | 2010-05-06 01:16:41 +0000 |
---|---|---|
committer | alcoheca <alcoheca@svn> | 2010-05-06 01:16:41 +0000 |
commit | 9b66e8b7f262fa4a89cca6a9a8aa77e0809a7b30 (patch) | |
tree | 868e370a4ac63efe8e010c8b5e99f97b6984cdb7 /lib | |
parent | 29d7be11e9dfd49e58df475dc43f99385adae774 (diff) |
[libcpluff] fixed log level inconsistencies
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@29824 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cpluff/libcpluff/ploader.c | 2 | ||||
-rw-r--r-- | lib/cpluff/libcpluff/pscan.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/cpluff/libcpluff/ploader.c b/lib/cpluff/libcpluff/ploader.c index 76ed161067..1e4c0ffb34 100644 --- a/lib/cpluff/libcpluff/ploader.c +++ b/lib/cpluff/libcpluff/ploader.c @@ -1130,7 +1130,7 @@ CP_C_API cp_plugin_info_t * cp_load_plugin_descriptor(cp_context_t *context, con N_("Plug-in descriptor in %s is invalid."), path); break; case CP_ERR_IO: - cpi_errorf(context, + cpi_debugf(context, N_("An I/O error occurred while loading a plug-in descriptor from %s."), path); break; case CP_ERR_RESOURCE: diff --git a/lib/cpluff/libcpluff/pscan.c b/lib/cpluff/libcpluff/pscan.c index 38b32975f8..e752048003 100644 --- a/lib/cpluff/libcpluff/pscan.c +++ b/lib/cpluff/libcpluff/pscan.c @@ -269,13 +269,13 @@ CP_C_API cp_status_t cp_scan_plugins(cp_context_t *context, int flags) { // Report error switch (status) { case CP_OK: - cpi_debug(context, N_("Plug-in scan has completed successfully.")); + cpi_info(context, N_("Plug-in scan has completed successfully.")); break; case CP_ERR_RESOURCE: cpi_error(context, N_("Could not scan plug-ins due to insufficient system resources.")); break; default: - cpi_error(context, N_("Could not scan plug-ins.")); + cpi_warn(context, N_("Not all directories were successfully scanned.")); break; } cpi_unlock_context(context); |