mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-31 12:42:17 +00:00
log out which command logger is used
This commit is contained in:
parent
ea8134c433
commit
448a30750b
1 changed files with 4 additions and 1 deletions
|
@ -7,11 +7,14 @@ Path = require "path"
|
|||
logger = require "logger-sharelatex"
|
||||
Metrics = require "./Metrics"
|
||||
child_process = require "child_process"
|
||||
CommandRunner = require(Settings.clsi?.commandRunner or "./CommandRunner")
|
||||
DraftModeManager = require "./DraftModeManager"
|
||||
fs = require("fs")
|
||||
os = require("os")
|
||||
|
||||
commandRunner = Settings.clsi?.commandRunner or "./CommandRunner"
|
||||
logger.info commandRunner:commandRunner, "selecting command runner for clsi"
|
||||
CommandRunner = require(commandRunner)
|
||||
|
||||
module.exports = CompileManager =
|
||||
doCompile: (request, callback = (error, outputFiles) ->) ->
|
||||
compileDir = Path.join(Settings.path.compilesDir, request.project_id)
|
||||
|
|
Loading…
Reference in a new issue