Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalluck authored and goneall committed Jan 22, 2025
1 parent ca634e6 commit 99ee2c7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
import org.spdx.core.InvalidSPDXAnalysisException;
import org.spdx.core.SpdxIdInUseException;
import org.spdx.core.TypedValue;
import org.spdx.library.ModelCopyManager;
import org.spdx.library.SpdxModelFactory;
import org.spdx.library.model.v2.SpdxConstantsCompatV2;
import org.spdx.storage.PropertyDescriptor;
Expand Down Expand Up @@ -81,7 +80,7 @@ public class InMemSpdxStoreTest extends TestCase {
String state; // used to track state in the asynch tests (e.g. testTransaction)

private synchronized String setTestState(String newState) {
logger.info("Setting state to "+state);
logger.info("Setting state to {}", state);
String retval = state;
state = newState;
return retval;
Expand Down

0 comments on commit 99ee2c7

Please sign in to comment.