diff --git a/orbis-kernel/src/sys/sys_sce.cpp b/orbis-kernel/src/sys/sys_sce.cpp index 1102d8962..927fb6a8c 100644 --- a/orbis-kernel/src/sys/sys_sce.cpp +++ b/orbis-kernel/src/sys/sys_sce.cpp @@ -617,7 +617,7 @@ orbis::SysResult orbis::sys_osem_trywait(Thread *thread, sint id, sint need) { return {}; } orbis::SysResult orbis::sys_osem_post(Thread *thread, sint id, sint count) { - ORBIS_LOG_WARNING(__FUNCTION__, thread, id, count); + ORBIS_LOG_TRACE(__FUNCTION__, thread, id, count); Ref sem = thread->tproc->semMap.get(id); if (count < 1 || count > sem->maxValue - sem->value) return ErrorCode::INVAL; diff --git a/orbis-kernel/src/umtx.cpp b/orbis-kernel/src/umtx.cpp index 406e4a487..bbf4b51cb 100644 --- a/orbis-kernel/src/umtx.cpp +++ b/orbis-kernel/src/umtx.cpp @@ -348,10 +348,8 @@ orbis::ErrorCode orbis::umtx_cv_wait(Thread *thread, ptr cv, auto start = std::chrono::steady_clock::now(); std::uint64_t udiff = 0; while (true) { - ORBIS_LOG_WARNING(__FUNCTION__, ut - udiff); result = ErrorCode{node->second.cv.wait(chain.mtx, ut - udiff)}; if (node->second.thr != thread) { - ORBIS_LOG_WARNING(__FUNCTION__, "wakeup"); break; } udiff = std::chrono::duration_cast( @@ -359,7 +357,6 @@ orbis::ErrorCode orbis::umtx_cv_wait(Thread *thread, ptr cv, .count(); if (udiff >= ut) { result = ErrorCode::TIMEDOUT; - ORBIS_LOG_WARNING(__FUNCTION__, "timeout"); break; } diff --git a/rpcsx-os/iodev/console.cpp b/rpcsx-os/iodev/console.cpp index d50005d6b..348dd4c2a 100644 --- a/rpcsx-os/iodev/console.cpp +++ b/rpcsx-os/iodev/console.cpp @@ -51,10 +51,6 @@ static orbis::ErrorCode console_write(orbis::File *file, orbis::Uio *uio, for (auto vec : std::span(uio->iov, uio->iovcnt)) { uio->offset += vec.len; - if (std::string_view((char *)vec.base, vec.len).contains("begin_setControllerFocus")) { - ORBIS_LOG_ERROR(__FUNCTION__, thread->tid); - thread->where(); - } ::write(dev->outputFd, vec.base, vec.len); ::write(2, vec.base, vec.len);