Fix error message

This commit is contained in:
Johannes Zellner
2016-06-07 15:56:22 +02:00
parent 17d48f3fce
commit 4afde79297

View File

@@ -167,7 +167,7 @@ function getAll(callback) {
appdb.get(record.appId, function (error, result) {
if (error) {
console.error('Failed to get app details for oauth client', result, error);
console.error('Failed to get app details for oauth client', record.appId, error);
return callback(null); // ignore error so we continue listing clients
}