Merge pull request #12679 from bancer/patch-4

Improve documentation
This commit is contained in:
Mark Story 2018-10-26 18:48:52 +00:00 committed by GitHub
commit a8521aa25a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -398,7 +398,7 @@ class CakeLog {
*
* @param int|string $type Type of message being written. When value is an integer
* or a string matching the recognized levels, then it will
* be treated log levels. Otherwise it's treated as scope.
* be treated as a log level. Otherwise it's treated as a scope.
* @param string $message Message content to log
* @param string|array $scope The scope(s) a log message is being created in.
* See CakeLog::config() for more information on logging scopes.

View file

@ -181,7 +181,9 @@ class Debugger {
* as well as export the variable using exportVar. By default the log is written to the debug log.
*
* @param mixed $var Variable or content to log
* @param int $level type of log to use. Defaults to LOG_DEBUG
* @param int|string $level Type of log to use. Defaults to LOG_DEBUG. When value is an integer
* or a string matching the recognized levels, then it will
* be treated as a log level. Otherwise it's treated as a scope.
* @param int $depth The depth to output to. Defaults to 3.
* @return void
* @link https://book.cakephp.org/2.0/en/development/debugging.html#Debugger::log