diff options
author | Tobias Markmann <tm@ayena.de> | 2016-05-25 14:04:15 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-05-25 14:04:15 (GMT) |
commit | 57eb5cdb61b34a83030eee6a3fe2973d2c2fd48f (patch) | |
tree | 6035bb5883faed4e84261473bc77a1318c92c977 /Swiften/Entity | |
parent | b2d3eae9fd085cd91b3efac53dca81fd450d5393 (diff) | |
download | swift-57eb5cdb61b34a83030eee6a3fe2973d2c2fd48f.zip swift-57eb5cdb61b34a83030eee6a3fe2973d2c2fd48f.tar.bz2 |
Remove unnecessary include of iostream header
Move std::cout/cerr logging to SWIFT_LOG.
Test-Information:
Builds and all tests pass on OS X 10.11.5.
Change-Id: I0a0c24654a8b3abf3244a79fd6d970eee90559d0
Diffstat (limited to 'Swiften/Entity')
-rw-r--r-- | Swiften/Entity/PayloadPersister.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Swiften/Entity/PayloadPersister.cpp b/Swiften/Entity/PayloadPersister.cpp index 4b3fb52..3fd246c 100644 --- a/Swiften/Entity/PayloadPersister.cpp +++ b/Swiften/Entity/PayloadPersister.cpp @@ -6,12 +6,11 @@ #include <Swiften/Entity/PayloadPersister.h> -#include <iostream> - #include <boost/filesystem.hpp> #include <boost/filesystem/fstream.hpp> #include <Swiften/Base/ByteArray.h> +#include <Swiften/Base/Log.h> #include <Swiften/Parser/PayloadParser.h> #include <Swiften/Parser/PayloadParserFactory.h> #include <Swiften/Parser/PayloadParsers/UnitTest/PayloadParserTester.h> @@ -35,7 +34,7 @@ void PayloadPersister::savePayload(std::shared_ptr<Payload> payload, const boost file.close(); } catch (const boost::filesystem::filesystem_error& e) { - std::cerr << "ERROR: " << e.what() << std::endl; + SWIFT_LOG(error) << e.what() << std::endl; } } @@ -51,7 +50,7 @@ std::shared_ptr<Payload> PayloadPersister::loadPayload(const boost::filesystem:: } } catch (const boost::filesystem::filesystem_error& e) { - std::cerr << "ERROR: " << e.what() << std::endl; + SWIFT_LOG(error) << e.what() << std::endl; } return std::shared_ptr<Payload>(); } |