Skip to content

Commit 3551eed

Browse files
committed
fix: remove debug logs
1 parent 478e1be commit 3551eed

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/templating.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ impl Variables {
7575
None => {
7676
let mut secrets = tera::Map::new();
7777
secrets.insert(key.to_string(), Value::String(encrypted.to_string()));
78-
println!("{}", self.inner);
7978
let Some(vars) = self.inner.as_object_mut() else {
8079
panic!("Variables should be a Value::Object");
8180
};
@@ -189,7 +188,6 @@ impl Variables {
189188
}
190189

191190
pub(crate) fn with_os(mut self) -> Self {
192-
println!("{}", self.inner);
193191
let Some(vars) = self.inner.as_object_mut() else {
194192
panic!("Variables should be a Value::Object");
195193
};

0 commit comments

Comments
 (0)