This commit is contained in:
Sebastian 2023-01-31 11:42:12 -03:00
parent 9d9a88af01
commit 5ff92139ba
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
2 changed files with 1 additions and 4 deletions

View File

@ -98,7 +98,7 @@ function writeNodeLog(
* and uses the corresponding console.* method to log in the browser.
*/
export class Logger {
constructor(private tag: string) { }
constructor(private tag: string) {}
shouldLogTrace(): boolean {
const level = byTagLogLevel[this.tag] ?? globalLogLevel;

View File

@ -21,7 +21,6 @@
* by the wallet for testing purposes.
*/
// Platform-specific implementation
export { connectRpc, runRpcServer } from "#twrpc-impl";
@ -60,5 +59,3 @@ export interface RpcConnectArgs<T> {
onMessage(m: JsonMessage): void;
};
}