mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Merge pull request +9218 from c9/fix/collab-logging
[Trivial] Need to convert data to a string
This commit is contained in:
commit
ccad022894
@ -128,7 +128,7 @@ Vfs.prototype._watchConnection = function(pid) {
|
||||
function onStderr(data) {
|
||||
// @todo collab stderr logs
|
||||
console.log("VFS stderr [" + pid + "]: " + data);
|
||||
that.logger.log({message: data, pid: pid});
|
||||
that.logger.log({message: data.toString(), pid: pid});
|
||||
}
|
||||
|
||||
master.on("disconnect", onError);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user