]> git.sesse.net Git - nageru/blobdiff - httpd.cpp
Remove some debugging output.
[nageru] / httpd.cpp
index 5226885be2e1e4e4fb76ba7534c9ee58b14fdba4..1e4005453fc5aad0fe02600106f22f85ac7005d3 100644 (file)
--- a/httpd.cpp
+++ b/httpd.cpp
@@ -57,12 +57,9 @@ int HTTPD::answer_to_connection(MHD_Connection *connection,
 {
        // See if the URL ends in “.metacube”.
        HTTPD::Stream::Framing framing;
-       printf("url=[%s]\n", url);
        if (strstr(url, ".metacube") == url + strlen(url) - strlen(".metacube")) {
-               printf("metacube\n");
                framing = HTTPD::Stream::FRAMING_METACUBE;
        } else {
-               printf("raw\n");
                framing = HTTPD::Stream::FRAMING_RAW;
        }