Tidy up logging

This commit is contained in:
Tony Garnock-Jones 2013-10-28 19:08:03 +00:00
parent 2f494f5ec0
commit b8a2883bf7
2 changed files with 1 additions and 1 deletions

View File

@ -181,6 +181,7 @@
(w (struct-copy world w [next-pid (+ new-pid 1)]))
(w (struct-copy world w [process-table
(hash-set (world-process-table w) new-pid new-p)])))
(log-info "Spawned process ~a ~v ~v" new-pid (process-behavior new-p) (process-state new-p))
(issue-routing-update w))]
[(quit)
(when (hash-has-key? (world-process-table w) pid) (log-info "Process ~a terminating" pid))

View File

@ -34,7 +34,6 @@
(begin (log-info "run-ground: Terminating because inert")
(void))
(let ((e (apply sync event-list)))
(log-info "Woke: ~v" e)
(match (deliver-event e -2 p)
[#f ;; inert
(await-interrupt #t p active-events)]