]> git.mxchange.org Git - simgear.git/commitdiff
Slightly better error message for invalid taxiway signs.
authorThorstenB <brehmt@gmail.com>
Mon, 9 Jan 2012 19:27:27 +0000 (20:27 +0100)
committerThorstenB <brehmt@gmail.com>
Mon, 9 Jan 2012 19:27:27 +0000 (20:27 +0100)
simgear/scene/tgdb/apt_signs.cxx

index d76622a6c397f9fec1752e9d666fca12a325da99..80328d23d206264551bbd7b694ea303c6f5e4e4e 100644 (file)
@@ -117,13 +117,13 @@ SGMakeSign(SGMaterialLib *matlib, const string& path, const string& content)
 
         if (*s == '{') {
             if (cmd)
-                SG_LOG(SG_TERRAIN, SG_ALERT, SIGN "unexpected { in sign contents");
+                SG_LOG(SG_TERRAIN, SG_ALERT, SIGN "Illegal taxiway sign syntax. Unexpected '{' in '" << content << "'.");
             cmd = true;
             continue;
 
         } else if (*s == '}') {
             if (!cmd)
-                SG_LOG(SG_TERRAIN, SG_ALERT, SIGN "unexpected } in sign contents");
+                SG_LOG(SG_TERRAIN, SG_ALERT, SIGN "Illegal taxiway sign syntax. Unexpected '{' in '" << content << "'.");
             cmd = false;
             continue;