summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-12-05 09:46:55 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-12-05 09:46:55 +0900
commitc6dcf3dda448c422bd556834b336f7fdb9296097 (patch)
treeec52fae80ffc4bcfade5962414a964847bb34c4e
parent92eacde6e7e1a4a53185691fd97b549029724320 (diff)
downloadefl-c6dcf3dda448c422bd556834b336f7fdb9296097.tar.gz
eo: Make error message less nebulous
When writing this ERR log I thought about "thread" (it's really the keyword here) but eventually reworded to "context". Let's be clearer about the possible issue here.
-rw-r--r--src/lib/eo/eo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index dd6cff6e95..37c2a4c567 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -1662,7 +1662,8 @@ err_obj:
err:
if (!data) return EINA_FALSE;
ERR("Object %p is not a valid object in this context: object domain: %d, "
- "current domain: %d, local domain: %d, available domains: [%s %s %s %s]",
+ "current domain: %d, local domain: %d, available domains: [%s %s %s %s]."
+ " Are you trying to access this object from another thread?",
eo_id, (int)domain,
(int)data->domain_stack[data->stack_top], (int)data->local_domain,
(data->tables[0]) ? "0" : " ", (data->tables[1]) ? "1" : " ",