aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/config/profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/config/profile.cpp')
-rw-r--r--NorthstarDLL/config/profile.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/NorthstarDLL/config/profile.cpp b/NorthstarDLL/config/profile.cpp
index d5361efa..08c91208 100644
--- a/NorthstarDLL/config/profile.cpp
+++ b/NorthstarDLL/config/profile.cpp
@@ -17,6 +17,7 @@ void InitialiseNorthstarPrefix()
{
int space = cla.find(" ");
std::string dirname = cla.substr(9, space - 9);
+ spdlog::info("Found profile in command line arguments: " + dirname);
NORTHSTAR_FOLDER_PREFIX = dirname;
}
else
@@ -25,11 +26,13 @@ void InitialiseNorthstarPrefix()
int quote1 = cla.find(quote);
int quote2 = (cla.substr(quote1 + 1)).find(quote);
std::string dirname = cla.substr(quote1 + 1, quote2);
+ spdlog::info("Found profile in command line arguments: " + dirname);
NORTHSTAR_FOLDER_PREFIX = dirname;
}
}
else
{
+ spdlog::info("Profile was not found in command line arguments. Using default: R2Northstar");
NORTHSTAR_FOLDER_PREFIX = "R2Northstar";
}