fun:对照添加打开本地文件夹功能。

This commit is contained in:
2025-11-05 09:35:36 +08:00
parent 23e12d1bda
commit 28206e8586
5 changed files with 24 additions and 8 deletions

View File

@@ -13,7 +13,7 @@ int main(int argc, char* argv[])
int port = 9009;
if (argc < 2) {
qDebug() << "==============> Usage: frelayServer port.";
qInfo() << "==============> Usage: frelayServer port.";
} else {
port = atoi(argv[1]);
}
@@ -28,7 +28,7 @@ int main(int argc, char* argv[])
return 1;
}
qDebug() << "TCP server is running. Press Ctrl+C to exit...";
qInfo() << "TCP server is running. Press Ctrl+C to exit...";
return app.exec();
}