Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions php/class-wp-cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ public static function log( $message ) {
/**
* Display success message prefixed with "Success: ".
*
* Success message is written to STDOUT.
* Success message is written to STDOUT, or discarded when `--quiet` flag is supplied.
*
* Typically recommended to inform user of successful script conclusion.
*
Expand Down Expand Up @@ -850,7 +850,7 @@ public static function debug( $message, $group = false ) {
/**
* Display warning message prefixed with "Warning: ".
*
* Warning message is written to STDERR.
* Warning message is written to STDERR, or discarded when `--quiet` flag is supplied.
*
* Use instead of `WP_CLI::debug()` when script execution should be permitted
* to continue.
Expand Down