From 7d9ff0ad721e41964c38410dbd0af63527deb56b Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 14 Apr 2016 18:56:48 +0200 Subject: [PATCH] Backed out changeset: 44cd3beacab6 --HG-- branch : compatibility-develop --- code/nel/src/misc/cmd_args.cpp | 2 -- code/ryzom/client/src/client.cpp | 4 ---- 2 files changed, 6 deletions(-) diff --git a/code/nel/src/misc/cmd_args.cpp b/code/nel/src/misc/cmd_args.cpp index a0801272b..65aae5769 100644 --- a/code/nel/src/misc/cmd_args.cpp +++ b/code/nel/src/misc/cmd_args.cpp @@ -249,8 +249,6 @@ bool CCmdArgs::parse(const std::vector &argv) { std::string name = argv[i]; - nlinfo("Argument %d: %s", i, name.c_str()); - #ifdef NL_OS_WINDOWS // support / and - under Windows, arguments should be at least 2 characters if (name.size() > 1 && (name[0] == '-' || name[0] == '/')) diff --git a/code/ryzom/client/src/client.cpp b/code/ryzom/client/src/client.cpp index cf1b6905d..255e8e95b 100644 --- a/code/ryzom/client/src/client.cpp +++ b/code/ryzom/client/src/client.cpp @@ -211,14 +211,10 @@ int main(int argc, char **argv) { std::string currentPath = CPath::getApplicationDirectory("Ryzom"); - nlinfo("Current path 1: %s", currentPath.c_str()); - // append profile ID to directory if (Args.haveArg("p")) currentPath = NLMISC::CPath::standardizePath(currentPath) + Args.getArg("p").front(); - nlinfo("Current path 2: %s", currentPath.c_str()); - if (!CFile::isExists(currentPath)) CFile::createDirectory(currentPath); CPath::setCurrentPath(currentPath);