Ignore:
Timestamp:
Nov 28, 2018 1:40:13 AM (5 years ago)
Author:
anonymous
Message:

Update fancyTxt()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Prefs.inc.php

    r644 r653  
    518518        // User_id must not be empty.
    519519        if ('' == $this->getParam('user_id')) {
    520             $app->logMsg(sprintf('Cannot save prefs because user_id not set.', null), LOG_WARNING, __FILE__, __LINE__);
     520            $app->logMsg(sprintf('Cannot load prefs because user_id not set.', null), LOG_WARNING, __FILE__, __LINE__);
    521521            return false;
    522522        }
     
    591591        // Skip this method if not using the db.
    592592        if ('database' != $this->getParam('storagetype')) {
    593             $app->logMsg('Prefs->save() does nothing unless using a database storagetype.', LOG_NOTICE, __FILE__, __LINE__);
     593            $app->logMsg('Prefs->save() does nothing unless using a database storagetype.', LOG_DEBUG, __FILE__, __LINE__);
    594594            return true;
    595595        }
     
    597597        // User_id must not be empty.
    598598        if ('' == $this->getParam('user_id')) {
    599             $app->logMsg(sprintf('Cannot save prefs because user_id not set.', null), LOG_WARNING, __FILE__, __LINE__);
     599            $app->logMsg(sprintf('Cannot save prefs because user_id not set.', null), LOG_DEBUG, __FILE__, __LINE__);
    600600            return false;
    601601        }
Note: See TracChangeset for help on using the changeset viewer.