*More log fixes
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Derrick Hammer 2022-12-19 11:47:09 -05:00
parent a6eef21da0
commit b7cd9ac5e2
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import { AddressInfo } from "net"; import { AddressInfo } from "net";
import log from "./log.js"; import log from "../log.js";
import fastify from "fastify"; import fastify from "fastify";
import type { FastifyInstance } from "fastify"; import type { FastifyInstance } from "fastify";
import { getKeyPair } from "../lib/seed.js"; import { getKeyPair } from "../lib/seed.js";

View File

@ -5,14 +5,14 @@ import type { Plugin, RPCMethod } from "@lumeweb/relay-types";
import slugify from "slugify"; import slugify from "slugify";
import * as fs from "fs"; import * as fs from "fs";
import path from "path"; import path from "path";
import type { Logger } from "loglevel"; import type { Logger } from "pino";
import { getSeed } from "../lib/seed.js"; import { getSeed } from "../lib/seed.js";
import pluginRpc from "./plugins/rpc"; import pluginRpc from "./plugins/rpc";
import pluginCore from "./plugins/core"; import pluginCore from "./plugins/core";
import type Config from "@lumeweb/cfg"; import type Config from "@lumeweb/cfg";
import EventEmitter2 from "eventemitter2"; import EventEmitter2 from "eventemitter2";
import log from "./log.js"; import log from "../log.js";
import { get as getSwarm } from "./swarm.js"; import { get as getSwarm } from "./swarm.js";
let pluginAPIManager: PluginAPIManager; let pluginAPIManager: PluginAPIManager;

View File

@ -1,6 +1,6 @@
import * as tls from "tls"; import * as tls from "tls";
import b4a from "b4a"; import b4a from "b4a";
import log from "./log.js"; import log from "../log.js";
import config from "../config.js"; import config from "../config.js";
export type SSLManagerRenewHandler = (domain: string) => Promise<boolean>; export type SSLManagerRenewHandler = (domain: string) => Promise<boolean>;