remove printlns from stdlib (#2467)

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-05-22 09:43:42 -07:00
committed by GitHub
parent 718873b3bb
commit b0f92c2f6d
4 changed files with 2 additions and 18 deletions

View File

@ -1915,7 +1915,7 @@ dependencies = [
[[package]]
name = "kcl-lib"
version = "0.1.56"
version = "0.1.57"
dependencies = [
"anyhow",
"approx 0.5.1",

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-lib"
description = "KittyCAD Language implementation and tools"
version = "0.1.56"
version = "0.1.57"
edition = "2021"
license = "MIT"
repository = "https://github.com/KittyCAD/modeling-app"

View File

@ -163,9 +163,6 @@ async fn inner_import(
}));
}
//print the current working directory
println!("Current working directory: {:?}", std::env::current_dir().unwrap());
// Make sure the file exists.
if !args.ctx.fs.exists(&file_path, args.source_range).await? {
return Err(KclError::Semantic(KclErrorDetails {

View File

@ -204,19 +204,6 @@ async fn inner_pattern_linear_3d(
async fn pattern_linear(data: LinearPattern, geometry: Geometry, args: Args) -> Result<Geometries, KclError> {
let id = uuid::Uuid::new_v4();
println!(
"id: {:#?}",
ModelingCmd::EntityLinearPattern {
axis: kittycad::types::Point3D {
x: data.axis()[0],
y: data.axis()[1],
z: data.axis()[2],
},
entity_id: geometry.id(),
num_repetitions: data.repetitions(),
spacing: data.distance(),
}
);
let resp = args
.send_modeling_cmd(