Learn R Programming

rpm (version 0.7-3)

message_print: [`print`] objects to the [`message`] output.

Description

A thin wrapper around [`print`] that captures its output and prints it as a [`message`], usually to STDERR. Tis is part of [`statnet.common`].

Usage

message_print(..., messageArgs = NULL)

Value

No return value, called for side effects.

Arguments

...

arguments to [`print`].

messageArgs

a list of arguments to be passed directly to [`message`].

Examples

Run this code
cat(1:5)

print(1:5)
message_print(1:5) # Looks the same (though may be in a different color on some frontends).

suppressMessages(print(1:5)) # Still prints
suppressMessages(message_print(1:5)) # Silenced

Run the code above in your browser using DataLab