developerinlondon
Programmer
I am trying the following code:
and the output i get is :
log_xml set to :falsetrue
I am passing 'true' as the parameter value. usually it works and its been working in the past without any problem, just suddenly when I made some changes to other parts of the script totally not related to this, it stopped working. any ideas?
Code:
log_xml = Boolean.getBoolean(request.getParameter("log_xml"));
logger.info ("log_xml set to :" + log_xml + request.getParameter("log_xml"));
and the output i get is :
log_xml set to :falsetrue
I am passing 'true' as the parameter value. usually it works and its been working in the past without any problem, just suddenly when I made some changes to other parts of the script totally not related to this, it stopped working. any ideas?