FuelLabs / sway

🌴 Empowering everyone to build reliable and efficient smart contracts.
https://docs.fuel.network/docs/sway/
Apache License 2.0
62.96k stars 5.32k forks source link

Sway debug library `dbg` #5277

Open sdankel opened 7 months ago

sdankel commented 7 months ago

@SilentCicero suggested a library in sway similar to rust's dbg that prints debug information.

JoshuaBatty commented 7 months ago

We probably need to use ECALL opcode for this.

JoshuaBatty commented 7 months ago

It requires encoding from the compiler to log any sort of data that you pass into dbg!

JoshuaBatty commented 2 weeks ago

It would be worth providing some examples of what log can currently do and outline the extra features the rust dbg lib has that we currently do not support.