summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-05-30 11:34:50 -0400
committerGitHub <noreply@github.com>2023-05-30 15:34:50 +0000
commit3b69d238cdedc7f47515ba74f2366724679c5c7d (patch)
tree016643f2551b53270f7af35a69e457ba74f91173 /runtime/lib.rs
parentacc6cdc0b1c0fae5e0fba3b0110f96119c2139f7 (diff)
feat(runtime): add `WorkerLogLevel` (#19316)
This is not really used yet, but provides some infrastructure for doing more fine grained logging in JS. I will add warn messages in a future PR.
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 50822d373..1e307f492 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -35,3 +35,4 @@ pub mod worker;
mod worker_bootstrap;
pub use worker_bootstrap::BootstrapOptions;
+pub use worker_bootstrap::WorkerLogLevel;