diff --git a/src/URL.cpp b/src/URL.cpp
index 0efc3bcc9fc3279a985376777c8fd9bd7d29c914..6e6776ec324eaca4dfb2097a64003e2801045722 100644
--- a/src/URL.cpp
+++ b/src/URL.cpp
@@ -102,7 +102,7 @@ std::tuple<std::unique_ptr<URL>,enum URIParseError> parseUri(std::string raw) {
                 last = cursor + 1;
                 state = AUTHORITY;
                 if (uri->scheme == "file") {
-                    std::cout << "file scheme, current path[" << uri->path << "]" << std::endl;
+                    //std::cout << "URL:::parseUri file scheme, current path[" << uri->path << "]" << std::endl;
                     state = PATH;
                 }
             } else {