diff options
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 3a41356..62a0612 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -114,6 +114,10 @@ static const CommandLineOption options[] = { int main(int argc, char **argv) { + printf("Invoked as:'"); + for(int i = 0; i < argc; ++i) + printf(" %s", argv[i]); + printf("'\n"); CommandLineParser::init(argc, argv); CommandLineParser::addOptionDefinitions(options); Stats::init(); |