In my first D7 site my watchdog file is mostly filled with this message:
'l10n_update', 'Automatically checked 0, updated 0.'
The message comes from function l10n_update_cron() in l10n_update.module.
If I look at the cron settings: it should run daily, but the last cronrun was 1 week 18 hours ago.
The message like to appear at every requested node.
This makes the recent logs unreadable.
My solution: check first whether there is something to tell:

    if ($checked || $updated) {
      watchdog('l10n_update', 'Automatically checked @checked translations, updated @updated.', array('@checked' => count($checked), '@updated' => count($updatedwatchdog)));
    }

Comments

asrob’s picture

Issue summary: View changes

Hi PROMES,

Can you test it again with l10n_install 7.x-1.6?

asrob’s picture

Version: 7.x-1.0-beta11 » 7.x-1.x-dev
Status: Active » Postponed (maintainer needs more info)

PROMES, do you have a chance to test this?

promes’s picture

Hello asrob,

Thanks for giving a response on this issue. I created a new site with l10n_install 7.x-1.17 as profile. I got stuck after creating the database.
I added both l10n_client and l10n_update in the module directory.
After clearing the database I had an installation I never had: fast and without any problems.
For me this version is a go.
But either add the client and update in the profile or set a warning on the project page!