From 83b3b46389e288b1842d4a27c8f7e67330b2dc51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Proch=C3=A1zka?= Date: Mon, 10 Jun 2024 13:00:13 +0200 Subject: [PATCH] JS: Make LogChannel public (#6529) ### What Made `LogChannel` an `export`. It was previously part of the public API, but I seem to have made it not exported at some point. ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) * [x] I've included a screenshot or gif (if applicable) * [x] I have tested the web demo (if applicable): * Using examples from latest `main` build: [rerun.io/viewer](https://rerun.io/viewer/pr/6529?manifest_url=https://app.rerun.io/version/main/examples_manifest.json) * Using full set of examples from `nightly` build: [rerun.io/viewer](https://rerun.io/viewer/pr/6529?manifest_url=https://app.rerun.io/version/nightly/examples_manifest.json) * [x] The PR title and labels are set such as to maximize their usefulness for the next release's CHANGELOG * [x] If applicable, add a new check to the [release checklist](https://github.com/rerun-io/rerun/blob/main/tests/python/release_checklist)! - [PR Build Summary](https://build.rerun.io/pr/6529) - [Recent benchmark results](https://build.rerun.io/graphs/crates.html) - [Wasm size tracking](https://build.rerun.io/graphs/sizes.html) To run all checks from `main`, comment on the PR with `@rerun-bot full-check`. --- rerun_js/web-viewer/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rerun_js/web-viewer/index.ts b/rerun_js/web-viewer/index.ts index 5013b2e120c4..a4e2e4549ec9 100644 --- a/rerun_js/web-viewer/index.ts +++ b/rerun_js/web-viewer/index.ts @@ -455,7 +455,7 @@ export class WebViewer { }; } -class LogChannel { +export class LogChannel { #on_send; #on_close; #get_state;