Skip to content

Commit 0a9d373

Browse files
Less logging.
1 parent e650848 commit 0a9d373

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

lib/async/service/managed_service.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def start
6262
# @parameter clock [Async::Clock] The monotonic start time from {Async::Clock.start}.
6363
def emit_prepared(instance, clock)
6464
# Override in subclasses as needed.
65-
Console.info(self, "Prepared...", duration: clock.total)
65+
# Console.info(self, "Prepared...", duration: clock.total)
6666
end
6767

6868
# Called after the service has started running.
@@ -73,7 +73,7 @@ def emit_prepared(instance, clock)
7373
# @parameter clock [Async::Clock] The monotonic start time from {Async::Clock.start}.
7474
def emit_running(instance, clock)
7575
# Override in subclasses as needed.
76-
Console.info(self, "Running...", duration: clock.total)
76+
# Console.info(self, "Running...", duration: clock.total)
7777
end
7878

7979
# Set up the container with health checking and process title formatting.

releases.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Releases
22

3+
## Unreleased
4+
5+
- Remove prepared and running log messages - not as useful as I imagined, and quite noisy.
6+
37
## v0.18.0
48

59
- Start health checker earlier in the process. Use `#healthy!` message instead of `#ready!`.

0 commit comments

Comments
 (0)