PHP 클래스 WP_CLI\Loggers\Execution

상속: extends WP_CLI\Loggers\Base
파일 보기 프로젝트 열기: wp-cli/wp-cli

공개 프로퍼티들

프로퍼티 타입 설명
$stderr Captured writes to STDERR.
$stdout Captured writes to STDOUT.

공개 메소드들

메소드 설명
error ( string $message ) Write an message to STDERR, prefixed with "Error: ".
error_multi_line ( $message_lines ) Similar to error( $message ), but outputs $message in a red box
info ( string $message ) Write an informational message to STDOUT.
success ( string $message ) Write a success message, prefixed with "Success: ".
warning ( string $message ) Write a warning message to STDERR, prefixed with "Warning: ".

보호된 메소드들

메소드 설명
write ( resource $handle, string $str ) Write a string to a resource.

메소드 상세

error() 공개 메소드

Write an message to STDERR, prefixed with "Error: ".
public error ( string $message )
$message string Message to write.

error_multi_line() 공개 메소드

Similar to error( $message ), but outputs $message in a red box
public error_multi_line ( $message_lines )

info() 공개 메소드

Write an informational message to STDOUT.
public info ( string $message )
$message string Message to write.

success() 공개 메소드

Write a success message, prefixed with "Success: ".
public success ( string $message )
$message string Message to write.

warning() 공개 메소드

Write a warning message to STDERR, prefixed with "Warning: ".
public warning ( string $message )
$message string Message to write.

write() 보호된 메소드

Write a string to a resource.
protected write ( resource $handle, string $str )
$handle resource Commonly STDOUT or STDERR.
$str string Message to write.

프로퍼티 상세

$stderr 공개적으로 프로퍼티

Captured writes to STDERR.
public $stderr

$stdout 공개적으로 프로퍼티

Captured writes to STDOUT.
public $stdout