adjusted log tags

This commit is contained in:
badaix 2016-03-22 23:37:19 +01:00
parent 2872527e0b
commit 750df78090
6 changed files with 10 additions and 10 deletions

View file

@ -31,7 +31,7 @@ StreamUri::StreamUri(const std::string& streamUri)
// https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
// scheme:[//[user:password@]host[:port]][/]path[?query][#fragment]
// would be more elegant with regex. Not yet supported on my dev machine's gcc 4.8 :(
logE << "StreamUri: " << streamUri << "\n";
logD << "StreamUri: " << streamUri << "\n";
size_t pos;
uri = trim_copy(streamUri);
while (!uri.empty() && ((uri[0] == '\'') || (uri[0] == '"')))