Skip to content

Commit 9e5fece

Browse files
authored
chore: log warning on trash config (#1091)
1 parent 0a27e35 commit 9e5fece

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rime/lever/deployment_tasks.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,8 @@ bool ConfigFileUpdate::Run(Deployer* deployer) {
437437
path trash = user_data_path / "trash";
438438
if (TrashDeprecatedUserCopy(source_config_path, dest_config_path,
439439
version_key_, trash)) {
440-
LOG(INFO) << "deprecated user copy of '" << file_name_ << "' is moved to "
441-
<< trash;
440+
LOG(WARNING) << "deprecated user copy of '" << file_name_
441+
<< "' is moved to " << trash;
442442
}
443443
// build the config file if needs update
444444
the<Config> config(Config::Require("config")->Create(file_name_));

0 commit comments

Comments
 (0)