Actions
action #27112
closed[tools] os-autoinst with proper logging system
Start date:
2017-10-30
Due date:
% Done:
100%
Estimated time:
Description
The os-autoinst logging system should use a proper logger. In order to harmonize across the application the logging system, we should use Mojo::Log. Example:
From:
open($logfd, ">", result_dir . "/autoinst-log.txt");
To:
Mojo::Log->new(handle => catfile($result_dir, 'autoinst-log.txt'), level => "debug");
Actions