Skip to content

Commit 1272b8e

Browse files
committed
removed unnecessary logs
1 parent 663575b commit 1272b8e

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
Back to [Readme](README.md).
99

10+
## [1.1.1] - 2023-07-10
11+
12+
### Removed
13+
14+
* Unnecessary error logging
15+
1016
## [1.1.0] - 2023-07-10
1117

1218
### Added
@@ -26,6 +32,8 @@ Back to [Readme](README.md).
2632

2733
Initial project version on GitHub and Maven Central.
2834

35+
[1.1.1]: https://github.com/bischoffdev/sandboy/tree/1.1.1
36+
2937
[1.1.0]: https://github.com/bischoffdev/sandboy/tree/1.1.0
3038

3139
[1.0.0]: https://github.com/bischoffdev/sandboy/tree/1.0.0

engine/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<parent>
99
<groupId>blog.softwaretester</groupId>
1010
<artifactId>sandboy-parent</artifactId>
11-
<version>1.1.0</version>
11+
<version>1.1.1</version>
1212
</parent>
1313

1414
<artifactId>sandboy-engine</artifactId>
15-
<version>1.1.0</version>
15+
<version>1.1.1</version>
1616

1717
<properties>
1818
<maven.compiler.release>11</maven.compiler.release>

engine/src/main/java/blog/softwaretester/sandboy/xml/pojo/Testcase.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,6 @@ public Status getStatus() {
8484
} else if (skipped != null && !skipped.isBlank()) {
8585
status = Status.SKIPPED;
8686
}
87-
88-
System.out.println("--- ERROR --- " + name);
89-
System.out.println(combinedErrorText + " " + status);
9087
return status;
9188
}
9289
}

examples/maven-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>blog.bischoffdev.sandboy</groupId>
88
<artifactId>maven-example</artifactId>
9-
<version>1.1.0</version>
9+
<version>1.1.1</version>
1010
<packaging>pom</packaging>
1111

1212
<properties>

maven/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>blog.softwaretester</groupId>
99
<artifactId>sandboy-parent</artifactId>
10-
<version>1.1.0</version>
10+
<version>1.1.1</version>
1111
</parent>
1212

1313
<artifactId>sandboy-maven</artifactId>
14-
<version>1.1.0</version>
14+
<version>1.1.1</version>
1515

1616
<packaging>maven-plugin</packaging>
1717

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>blog.softwaretester</groupId>
99
<artifactId>sandboy-parent</artifactId>
10-
<version>1.1.0</version>
10+
<version>1.1.1</version>
1111
<packaging>pom</packaging>
1212

1313
<name>Sandboy Parent</name>

0 commit comments

Comments
 (0)