mirror of
https://github.com/sbt/sbt.git
synced 2026-09-07 02:55:23 +02:00
Typo in web app log
This commit is contained in:
@@ -103,13 +103,13 @@ class Backend($: BackendScope[Unit, State]) {
|
||||
|
||||
val logger: Logger = new Logger {
|
||||
def fetched(url: String) = {
|
||||
println(s"Fetching $url")
|
||||
$.modState(s => s.copy(log = s"Fetching $url" +: s.log))
|
||||
}
|
||||
def fetching(url: String) = {
|
||||
println(s"Fetched $url")
|
||||
$.modState(s => s.copy(log = s"Fetched $url" +: s.log))
|
||||
}
|
||||
def fetching(url: String) = {
|
||||
println(s"Fetching $url")
|
||||
$.modState(s => s.copy(log = s"Fetching $url" +: s.log))
|
||||
}
|
||||
def other(url: String, msg: String) = {
|
||||
println(s"$url: $msg")
|
||||
$.modState(s => s.copy(log = s"$url: $msg" +: s.log))
|
||||
|
||||
Reference in New Issue
Block a user