A focused Docker Compose management web application.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: missing newline in EMPTY_LOGS_MESSAGE

Brooke f1a1b2ca abea2e37

+1 -1
+1 -1
packages/node/src/core/logs.rs
··· 10 10 use log::{debug, error}; 11 11 use tokio::sync::{RwLock, broadcast}; 12 12 13 - const EMPTY_LOGS_MESSAGE: &[u8] = b"No logs to show. Waiting for project to start..."; 13 + const EMPTY_LOGS_MESSAGE: &[u8] = b"No logs to show. Waiting for project to start...\n\r"; 14 14 15 15 impl LuminaryEngine { 16 16 /// Creates a stream of [Bytes] for clients to subscribe to.