[#absl-LogStreamer-2constructor-029] = xref:absl.adoc[absl]::xref:absl/LogStreamer.adoc[LogStreamer]::LogStreamer :relfileprefix: ../../ :mrdocs: Constructors == Synopses Declared in `<absl/log/log_streamer.h>` Moves the state of `that` into this `LogStreamer`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/LogStreamer/2constructor-04.adoc[LogStreamer](xref:absl/LogStreamer.adoc[LogStreamer]&& that) noexcept; ---- [.small]#xref:absl/LogStreamer/2constructor-04.adoc[_» more..._]# Creates a LogStreamer with a given `severity` that will log a message attributed to the given source location. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:absl/LogStreamer/2constructor-00.adoc[LogStreamer]( xref:absl/LogSeverity.adoc[absl::LogSeverity] severity, xref:absl/SourceLocation.adoc[absl::SourceLocation] loc = absl::SourceLocation::current()); ---- [.small]#xref:absl/LogStreamer/2constructor-00.adoc[_» more..._]# Creates a LogStreamer with a given `severity` that will log a message attributed to the given `file` and `line`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:absl/LogStreamer/2constructor-020.adoc[LogStreamer]( xref:absl/LogSeverity.adoc[absl::LogSeverity] severity, std::string_view file, int line); ---- [.small]#xref:absl/LogStreamer/2constructor-020.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *that* | The LogStreamer to move from. | *severity* | The severity to log the buffered message at. | *loc* | The source location the message is attributed to. | *file* | The source file the message is attributed to. | *line* | The source line the message is attributed to. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#