#[ink(message)]
fn set_test_data(&mut self, value: String) {
ink_core::env::println(value);
self.test_data.set(value);
}
Those error messages are printed to the console. Please note that you need to supply the following command line arguments to your node in order to make this happen:
--dev
: Use the dev chain spec. You should already be using that.-lruntime=debug
: Increase the log level for runtime generated messages.