Skip to content

Commit

Permalink
fix: maintain compatibility with node 6
Browse files Browse the repository at this point in the history
  • Loading branch information
CrypticaScriptura authored and joshmh committed Oct 6, 2020
1 parent 5c615f5 commit 26e8432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/logs.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const logsPath = path.resolve(dataPath, 'log')
const DELIMITER_SIZE = 5
const MAX_SIZE = 100000
const MAX_LINES = 2000
const ONE_MB = 1024 ** 2
const ONE_MB = Math.pow(1024, 2)

/**
* Get the newest log files
Expand Down

0 comments on commit 26e8432

Please sign in to comment.