Changeset 15011 for trunk/Jav_Commons/src/com/scenari/s/fw/properties/loaders/xml/HInitAppSaxHandler.java
- Timestamp:
- 03/03/10 14:59:40 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jav_Commons/src/com/scenari/s/fw/properties/loaders/xml/HInitAppSaxHandler.java
r13381 r15011 81 81 public static final String TAG_TRACE = "trace"; 82 82 83 public static final String TAG_TRACE_ATT_ ACTIVE = "active";83 public static final String TAG_TRACE_ATT_ENABLED = "enabled"; 84 84 85 85 public static final String TAG_TRACE_ATT_CODE = "code"; … … 128 128 try { 129 129 if (vCode != null && !vCode.equals("")) { 130 String v Active = pAttributes.getValue(TAG_TRACE_ATT_ACTIVE);131 if (v Active != null && vActive.startsWith("Y")) {130 String vEnabled = pAttributes.getValue(TAG_TRACE_ATT_ENABLED); 131 if (vEnabled != null && vEnabled.equals("true")) { 132 132 TraceMgr.enableTrace(vCode, true); 133 133 } else {
Note: See TracChangeset
for help on using the changeset viewer.