diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-28 16:58:13 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2006-03-28 16:58:13 +0000 |
commit | 55ee18016845d5030a066ef52db17e52fdaf6385 (patch) | |
tree | a14245701024111ebb7ee5253a0f1ce8f19427cc | |
parent | d6d19516ea2ef338d884d7e9b218a87a9cd6290b (diff) | |
download | mgaonline-55ee18016845d5030a066ef52db17e52fdaf6385.tar mgaonline-55ee18016845d5030a066ef52db17e52fdaf6385.tar.gz mgaonline-55ee18016845d5030a066ef52db17e52fdaf6385.tar.bz2 mgaonline-55ee18016845d5030a066ef52db17e52fdaf6385.tar.xz mgaonline-55ee18016845d5030a066ef52db17e52fdaf6385.zip |
s/log::l/log::explanations/
-rw-r--r-- | mdkonline.pm | 10 | ||||
-rwxr-xr-x | mdkupdate | 14 |
2 files changed, 12 insertions, 12 deletions
diff --git a/mdkonline.pm b/mdkonline.pm index a055f471..fb6ab34b 100644 --- a/mdkonline.pm +++ b/mdkonline.pm @@ -92,31 +92,31 @@ sub get_distro_type() { sub soap_create_account { my $data = $s->registerUser(@_)->result; - log::l("creating account $_[0]"); + log::explanations("creating account $_[0]"); $data; } sub soap_authenticate_user { my $data = $s->authenticateUser(@_)->result; - log::l("authenticating account $_[0]"); + log::explanations("authenticating account $_[0]"); $data; } sub soap_register_host { my $data = $s->registerHost(@_)->result; - log::l("registering host $_[3] named $_[4] in country $_[5]"); + log::explanation("registering host $_[3] named $_[4] in country $_[5]"); $data; } sub soap_upload_config { my $data = $s->setHostConfig(@_); - log::l("uploading config"); + log::explanations("uploading config"); $data ? $data->result : undef; } sub soap_query_bundle { my ($wc, $bundle_name) = @_; - log::l("querying the bundle $bundle_name"); + log::explanations("querying the bundle $bundle_name"); my $data = $s->query($wc->{HOST_ID}, $wc->{HOST_KEY}, 'Software::get_bundle', $bundle_name)->result; $data; } @@ -139,7 +139,7 @@ if (!$bundle) { } } else { - log::l("managing the $bundle bundle"); + log::explanations("managing the $bundle bundle"); if (-d '/live/media/loopbacks') { $in->ask_warn(N("Warning"), #-PO: here Live Install is currently *NOT* translated on the desktop, so it's better to keep as it: @@ -156,7 +156,7 @@ if (!$bundle) { my $res = mdkonline::prepare_upload_conf($wc); if ($bundle_vars{CLIENT_VERSION} > $CLIENT_VERSION) { - log::l("the client is too old in order to install the bundle $bundle_vars{BUNDLE}"); + log::explanations("the client is too old in order to install the bundle $bundle_vars{BUNDLE}"); $in->ask_warn(N("Warning"), N("The version of the Mandriva Online client is too old. You need to update to a newer version. You can get a new one from http://start.mandriva.com")); @@ -179,7 +179,7 @@ You need to update to a newer version. You can get a new one from http://start.m my $encoded_pass = uri_escape($bundle_vars{PASS}); $mirror->{url} =~ s!^([^:]*)://!\1://$encoded_login:$encoded_pass@!; } else { # unknown method, aborting - log::l("we got a bad bundle"); + log::explanations("we got a bad bundle"); $in->ask_warn(N("Error"), N("This bundle is not well formated. Aborting.")); $in->exit(1); } @@ -194,7 +194,7 @@ You need to update to a newer version. You can get a new one from http://start.m medias => [ keys %mirrors ], }); } else { - log::l("we did not got back a bundle: $bundle_info->{message}"); + log::explanations("we did not got back a bundle: $bundle_info->{message}"); $in->ask_warn(N("Error"), N("An error occurred") . "\n\n" . $bundle_info->{message}); } } @@ -229,10 +229,10 @@ sub install_pkgs { my $w = $in->wait_message(N("Please wait"), N("Installing packages ...\n")); eval { if (!$o_options->{is_bundle}) { - log::l("applying the updates"); + log::explanations("applying the updates"); system "/usr/sbin/gurpmi", "--auto", "--media", $media_name, @$choosed; } else { - log::l("installing the bundle"); + log::explanations("installing the bundle"); system "/usr/bin/gurpmi", '--auto', if_($o_options->{auto_select}, "--auto-select"), if_($o_options->{medias}, "--media", join(',', @{$o_options->{medias}})), "--searchmedia", $media_name, @$choosed; @@ -280,7 +280,7 @@ sub auto_install_rpms { sub add_media { my ($media_name, $mirror, $hdlist, $option) = @_; - log::l("removing/adding the media $media_name"); + log::explanations("removing/adding the media $media_name"); eval { system "/usr/sbin/urpmi.removemedia", $media_name; # use curl because wget sometime fail on https url |