device-manager: improve logging about non-existing data

Previously a missing key would cause this kind of log output:

D: [pulseaudio] module-device-manager.c: Database contains invalid data for key: sink:auto_null (probably pre-v1.0 data)
D: [pulseaudio] module-device-manager.c: Attempting to load legacy (pre-v1.0) data for key: sink:auto_null
D: [pulseaudio] module-device-manager.c: Size does not match.
D: [pulseaudio] module-device-manager.c: Unable to load legacy (pre-v1.0) data for key: sink:auto_null. Ignoring.

That is now replaced with

D: [pulseaudio] module-device-manager.c: Database contains no data for key: sink:auto_null
This commit is contained in:
Tanu Kaskinen 2016-01-26 14:57:32 +02:00
parent a1191874fe
commit 323dc5bfb9

View file

@ -292,8 +292,10 @@ static struct entry* entry_read(struct userdata *u, const char *name) {
pa_zero(data); pa_zero(data);
if (!pa_database_get(u->database, &key, &data)) if (!pa_database_get(u->database, &key, &data)) {
goto fail; pa_log_debug("Database contains no data for key: %s", name);
return NULL;
}
t = pa_tagstruct_new_fixed(data.data, data.size); t = pa_tagstruct_new_fixed(data.data, data.size);
e = entry_new(); e = entry_new();