Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit 37d7b91

Browse files
committed
Fix panic when starting daemon processes: eliminate this log message replicating logging from the original clvm_tools
1 parent 3f7d7bf commit 37d7b91

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clvm_tools_rs"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
edition = "2018"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/classic/clvm_tools/clvmc.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ pub fn compile_clvm(
117117
let compile = newer(input_path, output_path).unwrap_or_else(|_| true);
118118

119119
if compile {
120-
log::info(format!("clvmcc {} -o {}", input_path, output_path));
121120
let text = fs::read_to_string(input_path)
122121
.map_err(|x| format!("error reading {}: {:?}", input_path, x))?;
123122

0 commit comments

Comments
 (0)