Skip to content

Commit 99ee2c7

Browse files
dwalluckgoneall
authored andcommitted
Fix log message
1 parent ca634e6 commit 99ee2c7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/org/spdx/storage/simple/InMemSpdxStoreTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import org.spdx.core.InvalidSPDXAnalysisException;
3434
import org.spdx.core.SpdxIdInUseException;
3535
import org.spdx.core.TypedValue;
36-
import org.spdx.library.ModelCopyManager;
3736
import org.spdx.library.SpdxModelFactory;
3837
import org.spdx.library.model.v2.SpdxConstantsCompatV2;
3938
import org.spdx.storage.PropertyDescriptor;
@@ -81,7 +80,7 @@ public class InMemSpdxStoreTest extends TestCase {
8180
String state; // used to track state in the asynch tests (e.g. testTransaction)
8281

8382
private synchronized String setTestState(String newState) {
84-
logger.info("Setting state to "+state);
83+
logger.info("Setting state to {}", state);
8584
String retval = state;
8685
state = newState;
8786
return retval;

0 commit comments

Comments
 (0)