mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
Centralize the logs path in the Helper
This commit is contained in:
parent
d6f2def825
commit
f65ffdff1e
2 changed files with 6 additions and 1 deletions
|
@ -5,6 +5,7 @@ var Helper = {
|
|||
expandHome: expandHome,
|
||||
getConfig: getConfig,
|
||||
getUserConfigPath: getUserConfigPath,
|
||||
getUserLogsPath: getUserLogsPath,
|
||||
setHome: setHome,
|
||||
};
|
||||
|
||||
|
@ -20,6 +21,10 @@ function getUserConfigPath(name) {
|
|||
return path.join(this.USERS_PATH, name + ".json");
|
||||
}
|
||||
|
||||
function getUserLogsPath(name, network) {
|
||||
return path.join(this.HOME, "logs", name, network);
|
||||
}
|
||||
|
||||
function getConfig() {
|
||||
return require(this.CONFIG_PATH);
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ var Helper = require("./helper");
|
|||
|
||||
module.exports.write = function(user, network, chan, msg) {
|
||||
try {
|
||||
var path = require("path").join(Helper.HOME, "logs", user, network);
|
||||
var path = Helper.getUserLogsPath(user, network);
|
||||
mkdirp.sync(path);
|
||||
} catch (e) {
|
||||
log.error("Unabled to create logs directory", e);
|
||||
|
|
Loading…
Reference in a new issue