Generates a highlighted console log message with a reference number for efficient problem solving and immediately notifies technical support of the detected error condition. If the AutoRecovery option has been selected, the program version will be rolled-back to the previous (working) version of the program until the error is resolved.

For Example -
Java Program:
    addSymbol("&ColorCode","Red");
    addSymbol("&UserMessage","Alert");
    addSymbol("&UserEmail","User@Email.com");
    String jsonData = "{\"firstName\":\"John\",\"lastName\":\"Doe\"}";
    addSymbol("&Payload",jsonData);

CSS:
    .messageText {color: &ColorCode;}
   Renders to:
    .messageText {color: Red;}

HTML:
    <p class='messageText'>&UserMessage<p>
  Renders to:
    <p class='messageText'>Alert</p>

JavaScript
    function contactMessage()
        {
        window.location.href = "mailto:&UserEmail";
        }
  Renders to:
    function contactMessage()
        {
        window.location.href = "mailto:User@Email.com";
        }

   var userInfo = '&Payload';
  Renders to:
   var userInfo = '{"firstName":"John","lastName":"Doe"}';