You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This concerns the lib/runtime/wasmer and lib/runtime/life packages.
Since the logger logs the calling function, and that we named our functions as defined in the spec (e.g. ext_offchain_http_request_add_header_version_1), we should remove the function name prefix we manually add for all logs in those packages.
Task summary
This concerns the
lib/runtime/wasmer
andlib/runtime/life
packages.Since the logger logs the calling function, and that we named our functions as defined in the spec (e.g.
ext_offchain_http_request_add_header_version_1
), we should remove the function name prefix we manually add for all logs in those packages.In example:
to
You can probably just use a regex like
\("[ext_.+]
and replace all with("
.💁 This would unclutter logs for users and make code cleaner for developers.
Originally discussed here.
The text was updated successfully, but these errors were encountered: