Skip to content

Commit

Permalink
Log when HCKStudio and HCKClient start
Browse files Browse the repository at this point in the history
The test configuration step is quite a complicated; it first launches
machines, and performs various configuration steps. To provide more
visibility, log when machines are being launched.

Signed-off-by: Akihiko Odaki <[email protected]>
  • Loading branch information
akihikodaki committed Jul 13, 2023
1 parent 2478b5a commit 9cc0fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/setupmanagers/hckclient.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def initialize(setup_manager, scope, studio, name, run_opts)
@name = name
@kit = setup_manager.kit
@pool = 'Default Pool'
@logger.info("Starting client #{name}")
@runner = setup_manager.run_client(scope, @name, run_opts)
scope << self
end
Expand Down
1 change: 1 addition & 0 deletions lib/setupmanagers/hckstudio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def initialize(setup_manager, scope, run_opts, &ip_getter)
@ip_getter = ip_getter
@logger = @project.logger
@scope = scope
@logger.info('Starting studio')
@runner = setup_manager.run_studio(scope, run_opts)
end

Expand Down

0 comments on commit 9cc0fc5

Please sign in to comment.