PHP 8.3.4 Released!

Zookeeper::setDebugLevel

(PECL zookeeper >= 0.1.0)

Zookeeper::setDebugLevelSets the debugging level for the library

Descripción

public static Zookeeper::setDebugLevel(int $logLevel): bool

Parámetros

logLevel

ZooKeeper log level constants.

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Errores/Excepciones

This method emits PHP error/warning when parameters count or types are wrong or fail to set debug level.

Precaución

Since version 0.3.0, this method emits ZookeeperException and it's derivatives.

Ejemplos

Ejemplo #1 Zookeeper::setDebugLevel() example

Set debugl level.

<?php
$r
= Zookeeper::setDebugLevel(Zookeeper::LOG_LEVEL_WARN);
if (
$r)
echo
'SUCCESS';
else
echo
'ERR';
?>
?>

El resultado del ejemplo sería:

SUCCESS
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top