Skip to content

Commit a6f1ff0

Browse files
committed
Changed color of "skipped" log message
1 parent 184cb56 commit a6f1ff0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/CPPImpl/Processes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ SharedPromise<std::monostate> ProcessRedstoneConditional::cycle() {
902902
return child->cycle();
903903
} else {
904904
if (logSkip)
905-
factory.log(name + ": skipped", 0xff0000);
905+
factory.log(name + ": skipped", 0xff4fff);
906906
return scheduleTrivialPromise(factory.s.io);
907907
}
908908
});

server/RustImpl/src/process/redstone.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ impl<T: Process> Process for RedstoneConditionalProcess<T> {
113113
this.child.borrow().run(factory)
114114
} else {
115115
if let Some(name) = this.name {
116-
factory.log(Print { text: format!("{}: skipped", name), color: 0xFF0000, beep: None })
116+
factory.log(Print { text: format!("{}: skipped", name), color: 0xFF4FFF, beep: None })
117117
}
118118
return Ok(());
119119
}

0 commit comments

Comments
 (0)