From 8543095cf370a5f0624ccf953787a849e5310160 Mon Sep 17 00:00:00 2001 From: Edouard Dupin Date: Mon, 24 Jun 2013 07:54:34 +0200 Subject: [PATCH] [DEBUG] add debug to find the error --- exml/Attribute.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exml/Attribute.cpp b/exml/Attribute.cpp index f09f97b..9b489ac 100644 --- a/exml/Attribute.cpp +++ b/exml/Attribute.cpp @@ -97,6 +97,8 @@ bool exml::Attribute::Parse(const etk::UString& _data, int32_t& _pos, bool _case } m_value = _data.Extract(lastElementName+3, lastAttributePos+1); + EXML_DEBUG("attribute : " << m_name << "=\"" << m_value << "\""); + _pos = lastAttributePos; return true; }