[macOS] Remove unnecessary debug prints.
This commit is contained in:
parent
79454bfd3b
commit
42a30c76d9
|
@ -53,21 +53,12 @@ int main(int argc, char **argv) {
|
|||
|
||||
int first_arg = 1;
|
||||
const char *dbg_arg = "-NSDocumentRevisionsDebugMode";
|
||||
printf("arguments\n");
|
||||
for (int i = 0; i < argc; i++) {
|
||||
if (strcmp(dbg_arg, argv[i]) == 0) {
|
||||
first_arg = i + 2;
|
||||
}
|
||||
printf("%i: %s\n", i, argv[i]);
|
||||
}
|
||||
|
||||
#ifdef DEBUG_ENABLED
|
||||
// Lets report the path we made current after all that.
|
||||
char cwd[4096];
|
||||
getcwd(cwd, 4096);
|
||||
printf("Current path: %s\n", cwd);
|
||||
#endif
|
||||
|
||||
OS_MacOS os;
|
||||
Error err;
|
||||
|
||||
|
|
Loading…
Reference in New Issue