summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvo van Dongen <info@ivovandongen.nl>2017-05-23 17:08:10 +0300
committerIvo van Dongen <ivovandongen@users.noreply.github.com>2017-05-24 11:21:34 +0300
commit8b448786fed2251c345ff6ccbeb65afac8af8cf1 (patch)
tree9c263cd48e21bcce650e500a71ad691ae705b269
parent1759603e128ad0a08f4a25009b82695420ec2840 (diff)
downloadqtlocation-mapboxgl-8b448786fed2251c345ff6ccbeb65afac8af8cf1.tar.gz
[core] cleanup debug logging
-rw-r--r--src/mbgl/style/layers/custom_layer_impl.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mbgl/style/layers/custom_layer_impl.cpp b/src/mbgl/style/layers/custom_layer_impl.cpp
index f5ad2bb087..e2ed00a10d 100644
--- a/src/mbgl/style/layers/custom_layer_impl.cpp
+++ b/src/mbgl/style/layers/custom_layer_impl.cpp
@@ -1,6 +1,5 @@
#include <mbgl/style/layers/custom_layer_impl.hpp>
#include <mbgl/map/transform_state.hpp>
-#include <mbgl/util/logging.hpp>
namespace mbgl {
namespace style {
@@ -11,7 +10,6 @@ CustomLayer::Impl::Impl(const std::string& id_,
CustomLayerDeinitializeFunction deinitializeFn_,
void* context_)
: Layer::Impl(LayerType::Custom, id_, std::string()) {
- Log::Info(Event::General, "New custom layer Impl: %s", id_.c_str());
initializeFn = initializeFn_;
renderFn = renderFn_;
deinitializeFn = deinitializeFn_;