[rs] Don't use log crate in include_spirv

This commit is contained in:
Dzmitry Malyshau
2020-08-31 00:05:45 -04:00
committed by GitHub
parent b383285b85
commit 7eeff9c321

View File

@@ -48,7 +48,7 @@ fn test_vertex_attr_array() {
macro_rules! include_spirv {
($($token:tt)*) => {
{
log::info!("including '{}'", $($token)*);
//log::info!("including '{}'", $($token)*);
$crate::util::make_spirv(include_bytes!($($token)*))
}
};