mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
"use strict";
|
|
|
|
global.log = {
|
|
error: () => console.error.apply(console, arguments),
|
|
warn: () => {},
|
|
info: () => {},
|
|
debug: () => {},
|
|
};
|
|
|
|
var home = require("path").join(__dirname, ".lounge");
|
|
require("../../src/helper").setHome(home);
|