1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

expose logger to extensions (#3708)

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-09-01 13:15:38 +03:00 committed by GitHub
parent 584d45c5e0
commit 41fcd73c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,7 @@ import * as Store from "./stores";
import * as Util from "./utils"; import * as Util from "./utils";
import * as Catalog from "./catalog"; import * as Catalog from "./catalog";
import * as Types from "./types"; import * as Types from "./types";
import logger from "../../common/logger";
export { export {
App, App,
@ -34,4 +35,5 @@ export {
Store, Store,
Types, Types,
Util, Util,
logger
}; };