Skip to content

Commit

Permalink
Merge pull request #1775 from Expensify/flo_warn
Browse files Browse the repository at this point in the history
Upgrade 2 bottleneck logs to warns
  • Loading branch information
flodnv authored Jun 12, 2024
2 parents 10f9e1f + 5ef9d4b commit 92cff58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BedrockServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2045,7 +2045,7 @@ void BedrockServer::_acceptSockets() {
uint64_t now = STimeNow();
if ((port != _controlPort) && (_outstandingSocketThreads >= _maxSocketThreads)) {
if ((lastLogged < now - 3'000'000)) {
SINFO("Not accepting any new socket threads as we already have " << _outstandingSocketThreads << " of " << _maxSocketThreads);
SWARN("Not accepting any new socket threads as we already have " << _outstandingSocketThreads << " of " << _maxSocketThreads);
lastLogged = now;
}
return;
Expand Down
4 changes: 2 additions & 2 deletions sqlitecluster/SQLitePool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ size_t SQLitePool::getIndex(bool createHandle) {
return index;
} else {
// Wait for a handle.
SINFO("Waiting for DB handle");
SWARN("Waiting for DB handle");
_wait.wait(lock);
}
}
Expand Down Expand Up @@ -88,7 +88,7 @@ void SQLitePool::returnToPool(size_t index) {
}

SQLiteScopedHandle::SQLiteScopedHandle(SQLitePool& pool, size_t index) : _pool(pool), _index(index)
{}
{}

SQLiteScopedHandle::~SQLiteScopedHandle() {
_pool.returnToPool(_index);
Expand Down

0 comments on commit 92cff58

Please sign in to comment.