當前位置: 首頁>>代碼示例>>PHP>>正文


PHP logger::log_event方法代碼示例

本文整理匯總了PHP中logger::log_event方法的典型用法代碼示例。如果您正苦於以下問題:PHP logger::log_event方法的具體用法?PHP logger::log_event怎麽用?PHP logger::log_event使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在logger的用法示例。


在下文中一共展示了logger::log_event方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: delete_csr_from_db

function delete_csr_from_db($person, $auth_key)
{
    if (!$person->isAuth()) {
        return false;
    }
    /* Verify that the CSR is present */
    try {
        $csr = get_csr_from_db_raw($person->getX509ValidCN(), $auth_key);
    } catch (CSRNotFoundException $csrnfe) {
        echo "No matching CSR found.<BR>\n";
        $msg = "Could not delete CSR from ip " . $_SERVER['REMOTE_ADDR'];
        $msg .= " : " . stripslashes($person->getX509ValidCN()) . " Reason: not found";
        Logger::log_event(LOG_NOTICE, $msg);
        return false;
    } catch (ConfusaGenException $cge) {
        $msg = "Error in deleting CSR (" . htmlentities($auth_key) . ")";
        $msg .= "for user: " . htmlentities(stripslashes($person->getX509ValidCN())) . " ";
        $msg .= "Too many hits!";
        Framework::error_output($msg);
        Logger::log_event(LOG_ALERT, $msg);
        return false;
    }
    MDB2Wrapper::update("DELETE FROM csr_cache WHERE auth_key=? AND common_name=?", array('text', 'text'), array($auth_key, $person->getX509ValidCN()));
    $msg = "Dropping csr " . $auth_key . " ";
    $msg .= "for user " . stripslashes($person->getX509ValidCN()) . "  (" . $_SERVER['REMOTE_ADDR'] . ") from csr_cache";
    logger::log_event(LOG_NOTICE, $msg);
    return true;
}
開發者ID:henrikau,項目名稱:confusa,代碼行數:28,代碼來源:csr_lib.php


注:本文中的logger::log_event方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。