Lines Matching refs:print
213 //! * `auto` (default) will attempt to print style characters, but don't force the issue.
214 //! If the console isn't available on Windows, or if TERM=dumb, for example, then don't print colors.
215 //! * `always` will always print style characters even if they aren't supported by the terminal.
217 //! * `never` will never print style characters.
313 /// - `RUST_LOG_STYLE`: whether or not to print styles with records.
922 let print = |formatter: &mut Formatter, record: &Record| {
924 (self.format)(formatter, record).and_then(|_| formatter.print(&self.writer));
943 print(formatter, record);
948 print(&mut formatter, record);
955 print(&mut Formatter::new(&self.writer), record);
965 print(&mut Formatter::new(&self.writer), record);