summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2015-03-15 03:20:53 +0200
committerKonstantin Käfer <mail@kkaefer.com>2015-03-18 12:51:33 +0100
commit3254cdc85c4a836cb57b2b56770e5a1ec26adc23 (patch)
tree4898d19879ecf1825309cd7f9c43faa24b14f97b /include
parent66841bf7eb0d85b5f7c38092e17b9cc16a1dc18a (diff)
downloadqtlocation-mapboxgl-3254cdc85c4a836cb57b2b56770e5a1ec26adc23.tar.gz
Log the Environment ID and the Thread name
To make it easier to debug, add the Environment ID and the Thread name to the log messages. For instance log messages from the TileParser will look like: [WARNING] {0}{TileWorker_15/18653/9486}[ParseTile]: some relevant warning message | | | | | | | +-> Component | | +--------------------> Thread name | +----------------------------------> Environment ID +------------------------------------------> Severity level Log messages that are not inside an Environment::Scope will work normally and will look like: [WARNING] [JNI]: some relevant warning message Fixes #882.
Diffstat (limited to 'include')
-rw-r--r--include/mbgl/platform/log.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/platform/log.hpp b/include/mbgl/platform/log.hpp
index de7f131714..5d287eb572 100644
--- a/include/mbgl/platform/log.hpp
+++ b/include/mbgl/platform/log.hpp
@@ -68,7 +68,7 @@ private:
// This method is the data sink that must be implemented by each platform we
// support. It should ideally output the error message in a human readable
// format to the developer.
- static void platformRecord(EventSeverity severity, Event event, int64_t code, const std::string &msg);
+ static void platformRecord(EventSeverity severity, const std::string &msg);
};
}