Skip to content

Commit

Permalink
Fix some spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
panthony committed Apr 1, 2015
1 parent 3030b15 commit ce5956a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/jrds/GraphNode.java
Expand Up @@ -142,7 +142,7 @@ public Graph getGraph() {
String textValue = Util.parseTemplate(e.getValue(), probe);
GenericBean bean = beansList.get(name);
if(bean == null) {
logger.error(String.format("Unknonw bean for %s: %s", gd.getName() , name));
logger.error(String.format("Unknown bean for %s: %s", gd.getName() , name));
continue;
}
logger.trace(Util.delayedFormatString("Found attribute %s with value %s", name, textValue));
Expand Down
4 changes: 2 additions & 2 deletions src/jrds/Probe.java
Expand Up @@ -309,7 +309,7 @@ protected boolean checkStoreFile() {
if (!rrdDir.isDirectory()) {
if( ! rrdDir.mkdir()) {
try {
log(Level.ERROR, "prode dir %s creation failed ", rrdDir.getCanonicalPath());
log(Level.ERROR, "probe dir %s creation failed ", rrdDir.getCanonicalPath());
} catch (IOException e) {
}
return false;
Expand Down Expand Up @@ -558,7 +558,7 @@ public void collect() {
}

/**
* Return the string value of the probe as a path constitued of
* Return the string value of the probe as a path constituted of
* the host name / the probe name
* @see java.lang.Object#toString()
*/
Expand Down
2 changes: 1 addition & 1 deletion src/jrds/probe/HttpClientStarter.java
Expand Up @@ -98,7 +98,7 @@ private final SSLConnectionSocketFactory getSSLSocketFactory() {
@Override
public boolean isTrusted(X509Certificate[] chain,
String authType) throws CertificateException {
log(Level.TRACE, "trying to check certificates chain %s with authentication methode %s", chain, authType);
log(Level.TRACE, "trying to check certificates chain %s with authentication method %s", chain, authType);
return true;
}
})
Expand Down

0 comments on commit ce5956a

Please sign in to comment.