Package server: turn down logging a bit.

This prints two quite long lists of packages that are mixed up with
other logs, making them annoying to read. It is also not very useful now
that the package server is working quite reliably.

Change-Id: Ibf9d5fc3eadc5cef42a78aea831e0a035e248de3
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7366
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
PulkoMandy
2024-02-01 21:31:29 +00:00
committed by waddlesplash
parent ed6d7787bf
commit a4ae49d573
+4
View File
@@ -1178,8 +1178,10 @@ Volume::_GetActivePackages(int fd)
requestDeleter.Unset();
}
#if 0
INFORM("latest volume state:\n");
_DumpState(fLatestState);
#endif
// check whether that matches the expected state
if (_CheckActivePackagesMatchLatestState(request)) {
@@ -1212,8 +1214,10 @@ Volume::_GetActivePackages(int fd)
state->SetPackageActive(package, true);
}
#if 0
INFORM("currently active volume state:\n");
_DumpState(state);
#endif
fActiveState = stateDeleter.Detach();
return B_OK;