summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-08-06 19:46:23 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-08-06 19:46:23 +0200
commit2db310d15eb46247e7221107dc2b82826a296d6b (patch)
treef61d7d3a1a6acbbb8ecef692c3ea366363ca2f8d
parent58cd91cf08696e64bf3840fe625b4c66eac7f208 (diff)
downloadcrawler-2db310d15eb46247e7221107dc2b82826a296d6b.tar.gz
crawler-2db310d15eb46247e7221107dc2b82826a296d6b.tar.bz2
removed some debug prints
-rw-r--r--src/modules/urlnormalizer/googleurl/GoogleURLNormalizer.cpp4
-rw-r--r--src/modules/urlnormalizer/simpleurl/SimpleURLNormalizer.cpp3
2 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/urlnormalizer/googleurl/GoogleURLNormalizer.cpp b/src/modules/urlnormalizer/googleurl/GoogleURLNormalizer.cpp
index 69d3e77..e5810d6 100644
--- a/src/modules/urlnormalizer/googleurl/GoogleURLNormalizer.cpp
+++ b/src/modules/urlnormalizer/googleurl/GoogleURLNormalizer.cpp
@@ -2,8 +2,6 @@
#include <string>
-#include <iostream>
-
#include "url_util.h"
#include "url_canon_stdstring.h"
#include "url_parse.h"
@@ -16,13 +14,11 @@ using namespace url_parse;
GoogleURLNormalizer::GoogleURLNormalizer( )
{
Initialize( );
- cout << "Creating Google Normalizer" << endl;
}
GoogleURLNormalizer::~GoogleURLNormalizer( )
{
Shutdown( );
- cout << "Destroying Google Normalizer" << endl;
}
static string componentString( const string &s, const Component &comp )
diff --git a/src/modules/urlnormalizer/simpleurl/SimpleURLNormalizer.cpp b/src/modules/urlnormalizer/simpleurl/SimpleURLNormalizer.cpp
index 47dd7a3..e2f0ed7 100644
--- a/src/modules/urlnormalizer/simpleurl/SimpleURLNormalizer.cpp
+++ b/src/modules/urlnormalizer/simpleurl/SimpleURLNormalizer.cpp
@@ -1,6 +1,5 @@
#include <string>
#include <algorithm>
-#include <iostream>
#include "SimpleURLNormalizer.hpp"
@@ -8,12 +7,10 @@ using namespace std;
SimpleURLNormalizer::SimpleURLNormalizer( )
{
- cout << "Creating simple normalizer" << endl;
}
SimpleURLNormalizer::~SimpleURLNormalizer( )
{
- cout << "Destroying simple normalizer" << endl;
}
URL SimpleURLNormalizer::parseUrl( const string s )