From 04e279eb1c0e37e324d955969780cfec272442b9 Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Wed, 3 May 2017 17:08:10 +0800 Subject: [PATCH] pkg_alternatives: use ERROR level for symlink failure Signed-off-by: Yousong Zhou --- libopkg/pkg_alternatives.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2