summaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorkyren <kerriganw@gmail.com>2018-02-16 21:09:49 -0500
committerkyren <kerriganw@gmail.com>2018-02-16 21:09:49 -0500
commit73de52dcce3e222367312ec79743e0b50a134a6c (patch)
tree31079496616bda976fb48a99e048716972f351dc /src/util.rs
parentf0186d1799a9a2b93b8aef9003c86b9ba001c92d (diff)
downloadmlua-73de52dcce3e222367312ec79743e0b50a134a6c.zip
Remove debugging println!s
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/util.rs b/src/util.rs
index 13537a4..af6a50d 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -293,13 +293,11 @@ where
Ok(Err(err)) => {
ffi::luaL_checkstack(state, 2, ptr::null());
push_wrapped_error(state, err);
- println!("erroring...");
ffi::lua_error(state)
}
Err(p) => {
ffi::luaL_checkstack(state, 2, ptr::null());
push_wrapped_panic(state, p);
- println!("erroring...");
ffi::lua_error(state)
}
}