Fixed unnecessary logging when document not found

This commit is contained in:
Jacob Gunther 2018-04-30 16:40:28 -05:00 committed by GitHub
parent faa7e679ca
commit 5f6fefa7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class RethinkDBStore {
this.client.table('uploads').get(md5(key)).run((error, result) => {
if (error || !result) {
callback(false);
winston.error('failed to insert to table', error);
if (error) winston.error('failed to insert to table', error);
return;
}
callback(result.data);