aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2022-03-13 13:37:51 +0100
committerTeddy Wing2022-03-13 13:37:51 +0100
commit2eb81ea4bbed2c5a28044c41981671982fa0a369 (patch)
tree7ed0d09a555551d83d4c26f643c6111c10cf6c30 /src
parentdeaca6ce619226614b9e1b770590515a7b80d9a0 (diff)
downloadyaqlite-2eb81ea4bbed2c5a28044c41981671982fa0a369.tar.bz2
main(): Remove debug output
No longer necessary.
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 77092fa..c7bfc95 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -62,8 +62,6 @@ fn main() {
yaqlite::insert(&mut dbconn, &table_name, &mut yaml_data).unwrap();
- dbg!(yaml_data);
-
dbconn.close().unwrap();
},