Skip to content

Commit d869c6b

Browse files
show each argument on separate debug line
1 parent cfd8226 commit d869c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/nsc/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class ShaderCompiler final : public system::IApplicationFramework
3232
#ifndef NBL_DEBUG
3333
std::string str = argv[0];
3434
for (auto i=1; i<argc; i++)
35-
str += " "+argv[i];
36-
m_logger->log("Arguments Received: %s", ILogger::ELL_DEBUG, str.c_str());
35+
str += "\n"+argv[i];
36+
m_logger->log("Arguments Receive: %s", ILogger::ELL_DEBUG, str.c_str());
3737
#endif
3838

3939
// expect the first argument to be nsc.exe

0 commit comments

Comments
 (0)