Skip to content

Commit

Permalink
Merge pull request #8436 from naveenpaul1/remove_version_warning
Browse files Browse the repository at this point in the history
NSFS | Object Version when trying to delete, logs a WARN message
  • Loading branch information
naveenpaul1 authored Oct 9, 2024
2 parents 4c41484 + 1276c6f commit 0f73166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdk/namespace_fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2740,7 +2740,7 @@ class NamespaceFS {
};
} catch (err) {
if (err.code !== 'ENOENT') throw err;
dbg.warn(`NamespaceFS._get_version_info version of ${version_path} doesn't exist`, err);
dbg.log1(`NamespaceFS._get_version_info version of ${version_path} doesn't exist`, err);
}
// if stat failed, undefined will return
}
Expand Down

0 comments on commit 0f73166

Please sign in to comment.