From 8e510d6c415e03deba63436007c504675dbbade4 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 4 Jun 2018 22:00:29 +0200 Subject: [PATCH] Removed logging --- src/URI.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/URI.cpp b/src/URI.cpp index efc3f02..03eea13 100644 --- a/src/URI.cpp +++ b/src/URI.cpp @@ -72,9 +72,6 @@ URI::URI(string webroot, string reqpath) { relpath.erase(slash); } - cout << "info: " << info << endl; - cout << "rel: " << relpath << endl; - if (!info.empty() && isDirectory(webroot + relpath)) { relpath.append("/"); } @@ -95,7 +92,6 @@ URI::URI(string webroot, string reqpath) { this->filepath = webroot + relpath; if (isDirectory(webroot + abs)) { - cout << "DIR" << endl; if (abs[abs.length() - 1] != '/') { abs += "/"; } @@ -118,10 +114,6 @@ URI::URI(string webroot, string reqpath) { } } - cout << "Before rel: "<