@@ -5,7 +5,7 @@ use async_trait::async_trait;
5
5
use futures:: StreamExt ;
6
6
use serde:: {
7
7
de:: { DeserializeOwned , Visitor } ,
8
- Deserialize ,
8
+ Deserialize ,
9
9
} ;
10
10
use tokio:: { process:: Command , select} ;
11
11
use tokio_util:: codec:: { BytesCodec , FramedRead , LinesCodec } ;
@@ -153,9 +153,15 @@ impl CommandExt for Command {
153
153
NixLog :: Start { text, level: 0 , typ: 108 , .. } if text == "" => {
154
154
// Cache lookup? Coupled with copy log
155
155
} ,
156
+ NixLog :: Start { text, level: 4 , typ: 109 , .. } if text. starts_with( "querying info about " ) => {
157
+ // Cache lookup
158
+ }
156
159
NixLog :: Start { text, level: 4 , typ: 101 , .. } if text. starts_with( "downloading " ) => {
157
160
// NAR downloading, coupled with copy log
158
161
}
162
+ NixLog :: Start { text, level: 1 , typ: 111 , .. } if text. starts_with( "waiting for a machine to build " ) => {
163
+ // Useless repeating notification about build
164
+ }
159
165
NixLog :: Stop { .. } => { } ,
160
166
NixLog :: Result { .. } => { } ,
161
167
_ => warn!( "unknown log: {:?}" , log)
0 commit comments