🐞 fix(ftp): 删除无用打印

This commit is contained in:
huheng@kylinos.cn 2022-10-27 10:07:12 +08:00
parent 154c016217
commit a392b92156
1 changed files with 0 additions and 1 deletions

View File

@ -358,7 +358,6 @@ void FtpSession::handleFtpCommandPASV(const std::string & /*param*/)
if (!deviceId.empty()) {
std::string common = std::string("adb -s ") + deviceId + std::string(" reverse tcp:") + std::to_string(port)
+ std::string(" tcp:") + std::to_string(port);
std::cout << common << std::endl;
system(common.c_str());
}
}