Commit 3fbc7cca5e2b7e98540338ec0d9a9dbfa5762288

Authored by totoro
1 parent 0f9ed50a

remove log message

Showing 1 changed file with 5 additions and 4 deletions   Show diff stats
web/CXM_web_arg_utils.anubis
... ... @@ -30,6 +30,7 @@ public define DB_id
30 30 success(_value) then db_id(_value)
31 31 }
32 32 }.
  33 +
33 34 public define Maybe(DB_date)
34 35 get_DB_date
35 36 (
... ... @@ -225,10 +226,10 @@ public define Maybe(Word32)
225 226 ) =
226 227 if get_Word32(lwa, name) is
227 228 {
228   - failure then /*logDebug(debug_log, "Can't convert argument '" + name + "' to integer.");*/ failure
  229 + failure then failure
229 230 success(value) then
230 231 if value +< min | value >+ max then
231   - /*logDebug(debug_log, "The entered value (" + val + ")is out of boundaries [" + min + "," + max + "].");*/ failure
  232 + failure
232 233 else
233 234 success(value)
234 235 }.
... ... @@ -270,10 +271,10 @@ public define Maybe(Word8)
270 271 ) =
271 272 if get_Word8(lwa, name) is
272 273 {
273   - failure then /*logDebug(debug_log, "Can't convert argument '" + name + "' to integer.");*/ failure
  274 + failure then failure
274 275 success(value) then
275 276 if value +< min | value >+ max then
276   - /*logDebug(debug_log, "The entered value (" + val + ")is out of boundaries [" + min + "," + max + "].");*/ failure
  277 + failure
277 278 else
278 279 success(value)
279 280 }.
... ...