UNPKG

@actyx/sdk

Version:
16 lines (13 loc) 408 B
/* * Actyx SDK: Functions for writing distributed apps * deployed on peer-to-peer networks, without any servers. * * Copyright (C) 2021 Actyx AG */ import { Loggers } from '../util/logging' const http = Loggers.of('http') const ws = Loggers.of('ws') const submono = Loggers.of('subscribe_monotonic') const actyx = Loggers.of('actyx') export const log = { actyx, http, ws, submono } export default log