package Cpanel::Easy::Utils::RunLog;

# cpanel10 - Cpanel/Easy/Utils/RunLog.pm     Copyright(c) 2005-2007 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cpanel license. Unauthorized copying is prohibited

use strict;
use warnings;
no warnings qw(redefine);

sub update_runlog_entry {
    my ( $easy, $hashref ) = @_;

    my $current = $easy->deserialize( $easy->{'runlog_file'} );

    $easy->serialize( $easy->{'runlog_file'}, $easy->merge_two_hr_right_prec( $current, $hashref ), );
}

1;
