Provides the [1] missing [`dbg!`](https://doc.rust-lang.org/std/macro.dbg.html) macro for Gear smart contracts.
```
use gdbg::dbg;
extern "C" fn init(){
let payload = String::from_utf8(msg::load_bytes().expect("Failed to load a message"))
dbg!(&payload);
}
```
-