1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-25 14:52:19 +03:00

GH-666 Remove some logging

This commit is contained in:
Tae Won Ha 2018-10-04 22:00:38 +02:00
parent c81a819152
commit 521c365f3d
2 changed files with 1 additions and 2 deletions

View File

@ -97,7 +97,6 @@ extension NvimView {
rowStart: rowStart,
rowEndInclusive: self.ugrid.size.height - 1
)
stdoutLogger.debug(self.ugrid)
}
// The position stays at the first cell when we enter the terminal mode

View File

@ -306,7 +306,7 @@ final class UGrid: CustomStringConvertible {
}
func recomputeFlatIndices(rowStart: Int, rowEndInclusive: Int) {
stdoutLogger.debug("Recomputing flat indices from row \(rowStart)")
logger.debug("Recomputing flat indices from row \(rowStart)")
var delta = 0
if rowStart > 0 {