Changeset 12578

Show
Ignore:
Timestamp:
05/28/08 01:13:30 (6 months ago)
Author:
hio
Message:

debug時に認証情報を標準出力に出すように.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/tiarra/trunk/module/System/WebClient.pm

    r12325 r12578  
    577577  if( !_verify_value($param->[1], $user) ) 
    578578  { 
     579    $DEBUG and ::printmsg("$req->{peer}: $param->[0] user $param->[1] does not match with '$user' (user)"); 
    579580    return; 
    580581  } 
    581582  if( !_verify_value($param->[2], $pass) ) 
    582583  { 
     584    $DEBUG and ::printmsg("$req->{peer}: $param->[0] pass $param->[2] does not match with '$pass' (pass)"); 
    583585    return; 
    584586  } 
     
    613615    return 1; 
    614616  } 
     617  $DEBUG and ::printmsg("$req->{peer}: $param->[0] pass $param->[1] does not match with '$uid' (uid), '$sn' (sn)"); 
    615618  return; 
    616619} 
     
    627630  if( !_verify_value($param->[1], $subno) ) 
    628631  { 
     632    $DEBUG and ::printmsg("$req->{peer}: $param->[0] pass $param->[1] does not match with '$subno' (subno)"); 
    629633    return; 
    630634  }