remove debug logging

This commit is contained in:
Joel Dice 2007-10-24 09:52:09 -06:00
parent 75b79e133e
commit 0f1a9bc77e

View File

@ -59,11 +59,6 @@ class DirectoryElement: public Element {
const char* file = append(s, this->name, "/", name); const char* file = append(s, this->name, "/", name);
System::Region* region; System::Region* region;
System::Status status = s->map(&region, file); System::Status status = s->map(&region, file);
if (status) {
fprintf(stderr, "%s not found\n", file);
}
s->free(file); s->free(file);
if (s->success(status)) { if (s->success(status)) {
@ -412,8 +407,6 @@ parsePath(System* s, const char* path)
memcpy(name, token.s, token.length); memcpy(name, token.s, token.length);
name[token.length] = 0; name[token.length] = 0;
fprintf(stderr, "path element: %s\n", name);
Element* e; Element* e;
switch (s->identify(name)) { switch (s->identify(name)) {
case System::File: { case System::File: {