Skip to content

Commit

Permalink
removing accidentally included println
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Paulson committed Jun 16, 2011
1 parent bf48fa7 commit 7e97ce7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
project.organization=net.lag project.organization=net.lag
project.name=configgy project.name=configgy
sbt.version=0.7.4 sbt.version=0.7.4
project.version=1.6.11-SNAPSHOT project.version=1.6.11-SNAPSHOTJP
def.scala.version=2.7.7 def.scala.version=2.7.7
build.scala.versions=2.7.7 build.scala.versions=2.7.7
project.initialize=false project.initialize=false
1 change: 0 additions & 1 deletion src/main/scala/net/lag/logging/FileHandler.scala
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ class FileHandler(val filename: String, val policy: Policy, formatter: Formatter
} }
if (maxFileSizeBytes != Long.MaxValue) { if (maxFileSizeBytes != Long.MaxValue) {
if (new File(filename).length + formattedLine.getBytes("UTF-8").length > maxFileSizeBytes) { if (new File(filename).length + formattedLine.getBytes("UTF-8").length > maxFileSizeBytes) {
println("ROLL!")
roll roll
} }
} }
Expand Down

0 comments on commit 7e97ce7

Please sign in to comment.