We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ddb85d + ff6067d commit b42c1baCopy full SHA for b42c1ba
1 file changed
lib/models/logger.js
@@ -18,9 +18,10 @@ var Logger = CoreObject.extend({
18
19
flush: function() {
20
var maxWidth = process.stdout.columns - 4;
21
+ var halfWidth = Math.floor(maxWidth / 2);
22
var table = new Table({
23
head: ['Source', 'Destination'],
- colWidths: [maxWidth / 2, maxWidth / 2]
24
+ colWidths: [halfWidth, halfWidth]
25
});
26
27
0 commit comments