Author: rahul Date: Fri Nov 21 08:49:47 2008 New Revision: 719636 URL: http://svn.apache.org/viewvc?rev=719636&view=rev Log: Use a log name in line with the rest of the library.
Modified: commons/proper/scxml/trunk/RELEASE-NOTES.txt commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java Modified: commons/proper/scxml/trunk/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/RELEASE-NOTES.txt?rev=719636&r1=719635&r2=719636&view=diff ============================================================================== --- commons/proper/scxml/trunk/RELEASE-NOTES.txt (original) +++ commons/proper/scxml/trunk/RELEASE-NOTES.txt Fri Nov 21 08:49:47 2008 @@ -32,6 +32,10 @@ o The "event" attribute of the <send> element is now correctly evaluated as an expression, rather than a String. + o In line with the rest of the logs used in the library, the default + SCXMLSemantics implementation now uses SCXMLSemantics.class to derive + its log name, instead of the previous logical name "scxml.app.log". + NEW FEATURES: o Modified: commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java URL: http://svn.apache.org/viewvc/commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java?rev=719636&r1=719635&r2=719636&view=diff ============================================================================== --- commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java (original) +++ commons/proper/scxml/trunk/src/main/java/org/apache/commons/scxml/semantics/SCXMLSemanticsImpl.java Fri Nov 21 08:49:47 2008 @@ -80,7 +80,7 @@ /** * SCXML Logger for the application. */ - private Log appLog = LogFactory.getLog("scxml.app.log"); + private Log appLog = LogFactory.getLog(SCXMLSemantics.class); /** * The TransitionTarget comparator.