mirror of https://github.com/stella-emu/stella.git
Merge branch 'master' of https://github.com/stella-emu/stella
This commit is contained in:
commit
50cb562592
|
@ -40,7 +40,7 @@ class SoundNull : public Sound
|
|||
*/
|
||||
explicit SoundNull(OSystem& osystem) : Sound(osystem)
|
||||
{
|
||||
Logger::log("Sound disabled.\n", 1);
|
||||
Logger::info("Sound disabled.\n");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -26,7 +26,8 @@ KeyValueRepositorySqlite::KeyValueRepositorySqlite(
|
|||
const string& tableName
|
||||
) : myTableName(tableName),
|
||||
myDb(db)
|
||||
{}
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
std::map<string, Variant> KeyValueRepositorySqlite::load()
|
||||
|
@ -42,7 +43,7 @@ std::map<string, Variant> KeyValueRepositorySqlite::load()
|
|||
myStmtSelect->reset();
|
||||
}
|
||||
catch (SqliteError err) {
|
||||
Logger::log(err.message, 1);
|
||||
Logger::info(err.message);
|
||||
}
|
||||
|
||||
return values;
|
||||
|
@ -68,7 +69,7 @@ void KeyValueRepositorySqlite::save(const std::map<string, Variant>& values)
|
|||
tx.commit();
|
||||
}
|
||||
catch (SqliteError err) {
|
||||
Logger::log(err.message, 1);
|
||||
Logger::info(err.message);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -86,7 +87,7 @@ void KeyValueRepositorySqlite::save(const string& key, const Variant& value)
|
|||
myStmtInsert->reset();
|
||||
}
|
||||
catch (SqliteError err) {
|
||||
Logger::log(err.message, 1);
|
||||
Logger::info(err.message);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ bool SettingsDb::initialize()
|
|||
mySettingsRepository->initialize();
|
||||
}
|
||||
catch (SqliteError err) {
|
||||
Logger::log("sqlite DB " + myDb->fileName() + " failed to initialize: " + err.message, 1);
|
||||
Logger::info("sqlite DB " + myDb->fileName() + " failed to initialize: " + err.message);
|
||||
|
||||
myDb.reset();
|
||||
mySettingsRepository.reset();
|
||||
|
|
|
@ -55,7 +55,7 @@ void SqliteDatabase::initialize()
|
|||
dbInitialized = sqlite3_exec(myHandle, "PRAGMA schema_version", nullptr, nullptr, nullptr) == SQLITE_OK;
|
||||
|
||||
if (!dbInitialized && tries == 1) {
|
||||
Logger::log("sqlite DB " + myDatabaseFile + " seems to be corrupt, removing and retrying...", 1);
|
||||
Logger::info("sqlite DB " + myDatabaseFile + " seems to be corrupt, removing and retrying...");
|
||||
|
||||
remove(myDatabaseFile.c_str());
|
||||
if (myHandle) sqlite3_close_v2(myHandle);
|
||||
|
@ -75,7 +75,7 @@ void SqliteDatabase::initialize()
|
|||
throw SqliteError("unable to initialize sqlite DB for unknown reason");
|
||||
};
|
||||
|
||||
Logger::log("successfully opened " + myDatabaseFile, 2);
|
||||
Logger::debug("successfully opened " + myDatabaseFile);
|
||||
|
||||
exec("PRAGMA journal_mode=WAL");
|
||||
|
||||
|
@ -84,11 +84,11 @@ void SqliteDatabase::initialize()
|
|||
break;
|
||||
|
||||
case SQLITE_MISUSE:
|
||||
Logger::log("failed to checkpoint WAL on " + myDatabaseFile + " - WAL probably unavailable", 1);
|
||||
Logger::info("failed to checkpoint WAL on " + myDatabaseFile + " - WAL probably unavailable");
|
||||
break;
|
||||
|
||||
default:
|
||||
Logger::log("failed to checkpoint WAL on " + myDatabaseFile + " : " + sqlite3_errmsg(myHandle), 1);
|
||||
Logger::info("failed to checkpoint WAL on " + myDatabaseFile + " : " + sqlite3_errmsg(myHandle));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,8 +42,8 @@ SoundLIBRETRO::SoundLIBRETRO(OSystem& osystem, AudioSettings& audioSettings)
|
|||
myUnderrun(false),
|
||||
myAudioSettings(audioSettings)
|
||||
{
|
||||
Logger::log("SoundLIBRETRO::SoundLIBRETRO started ...", 2);
|
||||
Logger::log("SoundLIBRETRO::SoundLIBRETRO initialized", 2);
|
||||
Logger::debug("SoundLIBRETRO::SoundLIBRETRO started ...");
|
||||
Logger::debug("SoundLIBRETRO::SoundLIBRETRO initialized");
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
@ -57,7 +57,7 @@ void SoundLIBRETRO::open(shared_ptr<AudioQueue> audioQueue,
|
|||
{
|
||||
myEmulationTiming = emulationTiming;
|
||||
|
||||
Logger::log("SoundLIBRETRO::open started ...", 2);
|
||||
Logger::debug("SoundLIBRETRO::open started ...");
|
||||
|
||||
audioQueue->ignoreOverflows(!myAudioSettings.enabled());
|
||||
|
||||
|
@ -65,7 +65,7 @@ void SoundLIBRETRO::open(shared_ptr<AudioQueue> audioQueue,
|
|||
myUnderrun = true;
|
||||
myCurrentFragment = nullptr;
|
||||
|
||||
Logger::log("SoundLIBRETRO::open finished", 2);
|
||||
Logger::debug("SoundLIBRETRO::open finished");
|
||||
|
||||
myIsInitializedFlag = true;
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ void SoundLIBRETRO::close()
|
|||
myAudioQueue.reset();
|
||||
myCurrentFragment = nullptr;
|
||||
|
||||
Logger::log("SoundLIBRETRO::close", 2);
|
||||
Logger::debug("SoundLIBRETRO::close");
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue