Skip to content

Commit

Permalink
remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
esinx committed Sep 30, 2020
1 parent 31cae4d commit 87ac707
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ const camelot = async (documentPath: string): Promise<ICamelotWarning[]> => {
const command = `${config!.path || `camelot`} -show json -f ${documentPath}`;
const res = child_process.execSync(command);
const output = res.toString();
console.log({ output });
const parsed = JSON.parse(output);
return parsed;
} catch (error) {
Expand Down

0 comments on commit 87ac707

Please sign in to comment.