We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
write
write_all
1 parent f75e268 commit bd742f5Copy full SHA for bd742f5
crates/shim/src/sys/windows/mod.rs
@@ -14,4 +14,3 @@
14
limitations under the License.
15
*/
16
pub(crate) mod named_pipe_logger;
17
-pub use named_pipe_logger::NamedPipeLogger;
crates/shim/src/sys/windows/named_pipe_logger.rs
@@ -100,7 +100,7 @@ impl log::Log for NamedPipeLogger {
100
.current_connection
101
.lock()
102
.unwrap()
103
- .write(message.as_bytes())
+ .write_all(message.as_bytes())
104
{
105
Ok(_) => {}
106
Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {
0 commit comments