1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-01 01:52:18 +01:00

Refactor.

This commit is contained in:
Jean Paul Galea 2015-07-24 10:50:21 +02:00
parent 17378733af
commit 1341227342

View File

@ -444,13 +444,20 @@ if ($sessionCounter == $seenSessionCounter && $sessionUse > $seenSessionUse)
$percent = 1;
}
$myLog->log(LOG_INFO, "Timestamp seen=" . $seenTs . " this=" . $ts .
" delta=" . $tsDiff . ' secs=' . $tsDelta .
' accessed=' . $lastTime .' (' . $ad['accessed'] . ') now='
. $now . ' (' . strftime("%Y-%m-%d %H:%M:%S", $now)
. ') elapsed=' . $elapsed .
' deviation=' . $deviation . ' secs or '.
round(100*$percent) . '%');
$data = array(
'seen' => $seenTs,
'this' => $ts,
'delta' => $tsDiff,
'secs' => $tsDelta,
'accessed' => $lastTime .' (' . $ad['accessed'] . ')',
'now' => $now . ' (' . strftime("%Y-%m-%d %H:%M:%S", $now). ')',
'elapsed' => $elapsed,
'deviation' => $deviation . ' secs or '.round(100*$percent) . '%',
);
$msg = 'Timestamp';
foreach ($data as $k => $v) $msg .= " $k=$v";
$myLog->log(LOG_INFO, $msg);
unset($data, $msg);
if ($deviation > TS_ABS_TOLERANCE && $percent > TS_REL_TOLERANCE)
{