aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/lib/sqLite/mysqldataset.cpp4
-rw-r--r--xbmc/lib/sqLite/sqlitedataset.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/xbmc/lib/sqLite/mysqldataset.cpp b/xbmc/lib/sqLite/mysqldataset.cpp
index 992d451d69..85f26aa171 100644
--- a/xbmc/lib/sqLite/mysqldataset.cpp
+++ b/xbmc/lib/sqLite/mysqldataset.cpp
@@ -140,13 +140,13 @@ int MysqlDatabase::connect() {
}
}
- CLog::Log(LOGERROR, "Unable to open database:%s [%d](%s)",
+ CLog::Log(LOGERROR, "Unable to open database: %s [%d](%s)",
db.c_str(), mysql_errno(conn), mysql_error(conn));
return DB_CONNECTION_NONE;
}
catch(...)
{
- CLog::Log(LOGERROR, "Unable to open database:%s (%u)",
+ CLog::Log(LOGERROR, "Unable to open database: %s (%u)",
db.c_str(), GetLastError());
}
return DB_CONNECTION_NONE;
diff --git a/xbmc/lib/sqLite/sqlitedataset.cpp b/xbmc/lib/sqLite/sqlitedataset.cpp
index 11516e3257..474463a3ba 100644
--- a/xbmc/lib/sqLite/sqlitedataset.cpp
+++ b/xbmc/lib/sqLite/sqlitedataset.cpp
@@ -217,12 +217,12 @@ int SqliteDatabase::connect() {
return DB_CONNECTION_OK;
}
- CLog::Log(LOGERROR, "unable to open database:%s (%u)", db_fullpath.c_str(), GetLastError());
+ CLog::Log(LOGERROR, "Unable to open database: %s (%u)", db_fullpath.c_str(), GetLastError());
return DB_CONNECTION_NONE;
}
catch(...)
{
- CLog::Log(LOGERROR, "unable to open database:%s (%u)",
+ CLog::Log(LOGERROR, "Unable to open database: %s (%u)",
db_fullpath.c_str(), GetLastError());
}
return DB_CONNECTION_NONE;