@@ -93,10 +93,10 @@ public <T> T getAttribute(String attributeName) {
9393 if (isGlobal (attributeName )) {
9494 String name = getNameFromGlobalName (attributeName );
9595 attribute = (T ) globalAttributes .get (name );
96- log .trace ("Global HTTP session attribute: [name='{}', value={}] read " , name , attribute );
96+ log .trace ("Read global HTTP session attribute: [name='{}', value={}]" , name , attribute );
9797 } else {
9898 attribute = (T ) namespaceAttributes .get (attributeName );
99- log .trace ("Application namespace HTTP session attribute: [name='{}', value={}] read " , attributeName , attribute );
99+ log .trace ("Read application namespace HTTP session attribute: [name='{}', value={}]" , attributeName , attribute );
100100 }
101101 return attribute ;
102102 }
@@ -115,11 +115,11 @@ public void setAttribute(String attributeName, Object attributeValue) {
115115 if (isGlobal (attributeName )) {
116116 String name = getNameFromGlobalName (attributeName );
117117 globalAttributes .put (name , attributeValue );
118- log .trace ("Global HTTP session attribute: [name='{}', value={}] set " , name , attributeValue );
118+ log .trace ("Set global HTTP session attribute: [name='{}', value={}]" , name , attributeValue );
119119 } else {
120120 namespacePersistenceRequired = true ;
121121 namespaceAttributes .put (attributeName , attributeValue );
122- log .trace ("Application namespace HTTP session attribute: [name='{}', value={}] set " , attributeName , attributeValue );
122+ log .trace ("Set application namespace HTTP session attribute: [name='{}', value={}]" , attributeName , attributeValue );
123123 }
124124 }
125125
@@ -129,11 +129,11 @@ public void removeAttribute(String attributeName) {
129129 if (isGlobal (attributeName )) {
130130 String name = getNameFromGlobalName (attributeName );
131131 globalAttributes .remove (name );
132- log .trace ("Global HTTP session attribute: [name='{}'] removed " , name );
132+ log .trace ("Removed global HTTP session attribute: [name='{}']" , name );
133133 } else {
134134 namespacePersistenceRequired = true ;
135135 namespaceAttributes .remove (attributeName );
136- log .trace ("Application namespace HTTP session attribute: [name='{}'] removed " , attributeName );
136+ log .trace ("Removed application namespace HTTP session attribute: [name='{}']" , attributeName );
137137 }
138138 }
139139
0 commit comments