qa: fix deprecated log.warn in feature_dbcrash test

This clears up the following deprecation message when running the test:
```
test/functional/feature_dbcrash.py:270: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead
  self.log.warn("Node %d never crashed during utxo flush!", i)
```

Git grepping indicates that this was the last remaining use of `log.warn` in the functional tests.
This commit is contained in:
Jon Atack 2019-07-29 23:19:44 +02:00
parent 74ea1f3b0f
commit 62d3f5057f
No known key found for this signature in database
GPG Key ID: 4F5721B3D0E3921D
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework):
# Warn if any of the nodes escaped restart.
for i in range(3):
if self.restart_counts[i] == 0:
self.log.warn("Node %d never crashed during utxo flush!", i)
self.log.warning("Node %d never crashed during utxo flush!", i)
if __name__ == "__main__":
ChainstateWriteCrashTest().main()