From 0f1a9bc77eb62f4f1b21f9c6527a165b331e5f03 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 24 Oct 2007 09:52:09 -0600 Subject: [PATCH] remove debug logging --- src/finder.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/finder.cpp b/src/finder.cpp index 2c195a1333..c742006da0 100644 --- a/src/finder.cpp +++ b/src/finder.cpp @@ -59,11 +59,6 @@ class DirectoryElement: public Element { const char* file = append(s, this->name, "/", name); System::Region* region; System::Status status = s->map(®ion, file); - - if (status) { - fprintf(stderr, "%s not found\n", file); - } - s->free(file); if (s->success(status)) { @@ -412,8 +407,6 @@ parsePath(System* s, const char* path) memcpy(name, token.s, token.length); name[token.length] = 0; - fprintf(stderr, "path element: %s\n", name); - Element* e; switch (s->identify(name)) { case System::File: {