From: Yousong Zhou Date: Wed, 3 May 2017 09:08:10 +0000 (+0800) Subject: pkg_alternatives: use ERROR level for symlink failure X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=04e279eb1c0e37e324d955969780cfec272442b9;p=oweals%2Fopkg-lede.git pkg_alternatives: use ERROR level for symlink failure Signed-off-by: Yousong Zhou --- diff --git a/libopkg/pkg_alternatives.c b/libopkg/pkg_alternatives.c index 66b64de..890b510 100644 --- a/libopkg/pkg_alternatives.c +++ b/libopkg/pkg_alternatives.c @@ -78,7 +78,7 @@ static int pkg_alternatives_update_path(pkg_t *pkg, const pkg_vec_t *installed, } r = symlink(the_alt->altpath, path_in_dest); if (r) - opkg_msg(INFO, "failed symlinking %s -> %s\n", path_in_dest, the_alt->altpath); + opkg_msg(ERROR, "failed symlinking %s -> %s\n", path_in_dest, the_alt->altpath); } else { unlink(path_in_dest); r = 0;