Skip to content

Commit

Permalink
Minor fixes on log level. Updated pom version for 2.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
josefd8 committed Jul 6, 2019
1 parent b85688e commit 8c6c8e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GingerSpec provides common functionality that can be reused by different test pr

### Requirements
* Java 8+
* Maven 3.5
* Maven 3+
* Docker/docker-compose (for testing)


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.privaliatech</groupId>
<artifactId>gingerspec</artifactId>
<version>2.0.1-SNAPSHOT</version>
<version>2.0.1</version>

<name>Privalia GingerSpec framework</name>
<description>Acceptance Test library. Testing runtime to rule over Privalia's acceptance tests.</description>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/privalia/qa/data/BrowsersDataProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private static List<String> gridBrowsers(Map<String, String> filter) {
try {
doc = Jsoup.connect(grid).timeout(DEFAULT_TIMEOUT).get();
} catch (IOException e) {
LOGGER.debug("Exception on connecting to Selenium grid: {}", e.getMessage());
LOGGER.error("Exception on connecting to Selenium grid: {}", e.getMessage());
return response;
}

Expand Down Expand Up @@ -201,7 +201,7 @@ private static List<String> gridBrowsers(Map<String, String> filter) {
try {
doc = Jsoup.connect("http://" + node + "/wd/hub/static/resource/hub.html").timeout(DEFAULT_TIMEOUT).get();
} catch (IOException e) {
LOGGER.debug("Exception on connecting to Selenium node: {}", e.getMessage());
LOGGER.error("Exception on connecting to Selenium node: {}", e.getMessage());
return response;
}

Expand Down

0 comments on commit 8c6c8e6

Please sign in to comment.