Correct format type for pollstate

This commit is contained in:
Dale Schultz 2018-03-13 22:38:51 -04:00
parent ec4fce126c
commit 33fd0162cb
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* /*
* RomRaider Open-Source Tuning, Logging and Reflashing * RomRaider Open-Source Tuning, Logging and Reflashing
* Copyright (C) 2006-2015 RomRaider.com * Copyright (C) 2006-2018 RomRaider.com
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -144,7 +144,7 @@ public final class OBDLoggerConnection implements LoggerConnection {
} }
final byte[] request = protocol.constructReadAddressRequest( final byte[] request = protocol.constructReadAddressRequest(
module, obdQueries); module, obdQueries);
LOGGER.debug(String.format("Mode:%d %s Request ---> %s", LOGGER.debug(String.format("Mode:%s %s Request ---> %s",
pollState.getCurrentState(), module, asHex(request))); pollState.getCurrentState(), module, asHex(request)));
final byte[] response = protocol.constructReadAddressResponse( final byte[] response = protocol.constructReadAddressResponse(
@ -152,7 +152,7 @@ public final class OBDLoggerConnection implements LoggerConnection {
manager.send(request, response, pollState); manager.send(request, response, pollState);
final byte[] processedResponse = protocol.preprocessResponse( final byte[] processedResponse = protocol.preprocessResponse(
request, response, pollState); request, response, pollState);
LOGGER.debug(String.format("Mode:%d %s Response <--- %s", LOGGER.debug(String.format("Mode:%s %s Response <--- %s",
pollState.getCurrentState(), module, asHex(processedResponse))); pollState.getCurrentState(), module, asHex(processedResponse)));
protocol.processReadAddressResponses( protocol.processReadAddressResponses(
obdQueries, processedResponse, pollState); obdQueries, processedResponse, pollState);