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

Drop log level of useless messages.

This commit is contained in:
Simon Josefsson 2014-09-24 13:05:09 +02:00
parent 09e6deec5c
commit 92297d3c4d
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<?php
# Copyright (c) 2009-2013 Yubico AB
# Copyright (c) 2009-2014 Yubico AB
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -58,7 +58,7 @@ if (! $sync->isConnected()) {
# Verify that request comes from valid server
#
$myLog->log(LOG_INFO, 'Received request from ' . $_SERVER['REMOTE_ADDR']);
$myLog->log(LOG_DEBUG, 'Received request from ' . $_SERVER['REMOTE_ADDR']);
$allowed = in_array($_SERVER['REMOTE_ADDR'], $baseParams['__YKVAL_ALLOWED_SYNC_POOL__']);

View File

@ -1,6 +1,6 @@
<?php
# Copyright (c) 2009-2013 Yubico AB
# Copyright (c) 2009-2014 Yubico AB
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@ -164,7 +164,7 @@ class SyncLib
function getLocalParams($yk_publicname)
{
$this->log(LOG_INFO, "searching for yk_publicname " . $yk_publicname . " in local db");
$this->log(LOG_DEBUG, "searching for yk_publicname " . $yk_publicname . " in local db");
$res = $this->db->findBy('yubikeys', 'yk_publicname', $yk_publicname, 1);
if (!$res) {