mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Improve log message to contain 'line' in FileBasedOpenPgpTrustStore
This commit is contained in:
parent
b36b19d864
commit
97feeb2e2c
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ public class FileBasedOpenPgpTrustStore extends AbstractOpenPgpTrustStore {
|
|||
trust = Trust.valueOf(line);
|
||||
break;
|
||||
} catch (IllegalArgumentException e) {
|
||||
LOGGER.log(Level.WARNING, "Skipping invalid trust record in line " + lineNr + " of file " +
|
||||
file.getAbsolutePath());
|
||||
LOGGER.log(Level.WARNING, "Skipping invalid trust record in line " + lineNr + " \"" + line
|
||||
+ "\" of file " + file.getAbsolutePath());
|
||||
}
|
||||
}
|
||||
return trust != null ? trust : Trust.undecided;
|
||||
|
|
Loading…
Reference in a new issue