[macOS] Remove unnecessary debug prints.

This commit is contained in:
bruvzg 2023-03-14 16:12:20 +02:00
parent 79454bfd3b
commit 42a30c76d9
No known key found for this signature in database
GPG Key ID: 7960FCF39844EC38
1 changed files with 0 additions and 9 deletions

View File

@ -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;