using lt_log_print

replaced push_log_std with lt_log_print using LOG_TORRENT_WARN.
This commit is contained in:
nullren
2012-06-27 00:19:09 -07:00
parent eac7536f6a
commit 13f672ab4d
+4 -4
View File
@@ -139,8 +139,8 @@ apply_d_change_link(core::Download* download, const torrent::Object::list_type&
switch (changeType) {
case 0:
if (symlink(target.c_str(), link.c_str()) == -1){
control->core()->push_log_std("create_link failed: "
+ std::string(rak::error_number::current().c_str()));
lt_log_print(torrent::LOG_TORRENT_WARN, "create_link failed: %s",
rak::error_number::current().c_str());
}
break;
@@ -151,8 +151,8 @@ apply_d_change_link(core::Download* download, const torrent::Object::list_type&
if (!fileStat.update_link(link) || !fileStat.is_link() ||
unlink(link.c_str()) == -1){
control->core()->push_log_std("delete_link failed: "
+ std::string(rak::error_number::current().c_str()));
lt_log_print(torrent::LOG_TORRENT_WARN, "delete_link failed: %s",
rak::error_number::current().c_str());
}
break;
}