Ripple verbosity flags through the server

This commit is contained in:
Lucien Greathouse
2017-12-01 00:17:29 -08:00
parent 7f3aaf4680
commit 63b21b90ff
3 changed files with 22 additions and 4 deletions

View File

@@ -128,7 +128,7 @@ fn main() {
}
let vfs = {
let mut vfs = Vfs::new();
let mut vfs = Vfs::new(config.clone());
for (name, project_partition) in &project.partitions {
let path = {
@@ -158,9 +158,10 @@ fn main() {
{
let vfs = vfs.clone();
let config = config.clone();
thread::spawn(move || {
VfsWatcher::new(vfs).start();
VfsWatcher::new(config, vfs).start();
});
}