Changeset 312:cfe4cdbb68bb
- Timestamp:
- 09/08/09 15:41:03 (4 years ago)
- Author:
- tgambet
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@313
- Message:
-
changed level from debug to warn in case a parameter is unknown + more explicit log
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r309
|
r312
|
|
| 1 | | // $Id: ObserveAction.java,v 1.21 2009-09-08 15:32:46 tgambet Exp $ |
| | 1 | // $Id: ObserveAction.java,v 1.22 2009-09-08 15:41:03 tgambet Exp $ |
| 2 | 2 | // Author: Jean-Guilhem Rouel |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM and Keio, 2006. |
| … |
… |
|
| 171 | 171 | aUnicornCall.addParameter(paramPrefix + "mime", (String) reqParams.get(key)); |
| 172 | 172 | } else { |
| 173 | | logger.debug("Unknown parameter: " + key + " - " + (String) reqParams.get(key) +". This parameter is added to aUnicornCall."); |
| | 173 | logger.warn("Unknown parameter: " + key + " - " + (String) reqParams.get(key) +". This parameter is added to aUnicornCall. Check that this is the wanted behavior."); |
| 174 | 174 | aUnicornCall.addParameter(key, reqParams.get(key).toString()); |
| 175 | 175 | } |