Skip to content

Commit

Permalink
Removing logger class
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalrymple committed Feb 20, 2017
1 parent 4c235f5 commit 6b93877
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
3 changes: 1 addition & 2 deletions lib/HgRepo.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const Fs = require('fs-extra-promise');
const Path = require('path');
const Command = require('../utils/Command');
const Log = require('../utils/Logger');

function ensureGitify(pythonPath) {
return Command.run(`${pythonPath} -c 'import gitifyhg'`)
Expand Down Expand Up @@ -183,7 +182,7 @@ class HgRepo {
.run(`${this.pythonPath} -V`)
.then((output) => {
if (!output.stderr.includes('2.7')) {
Log.debug(output.stderr);
console.log(output.stderr);
throw new Error('Conversion library currently only supports Python 2.7.x ');
}

Expand Down
12 changes: 0 additions & 12 deletions utils/Logger.js

This file was deleted.

0 comments on commit 6b93877

Please sign in to comment.