I added a proper logging level logger implementation that is callable from JS.
Example: Fluvio.setupDebugging(false, 'Info');
Where the first argument is the full WASM logging of EVERYTHING and the second argument is the logging level for fluvio-client-wasm itself. Employ macros such as info! to make use of it.
I added a proper logging level logger implementation that is callable from JS.
Example: Fluvio.setupDebugging(false, 'Info');
Where the first argument is the full WASM logging of EVERYTHING and the second argument is the logging level for fluvio-client-wasm itself. Employ macros such as info! to make use of it.The logging levels:
pub enum JsLevel { Error = "Error", Warn = "Warn", Info = "Info", Debug = "Debug", Trace = "Trace" }
Resolves #267