Skip to content

Commit 1f40ffb

Browse files
committed
[atari][network] remove "application should remove this" message.
1 parent cd1fae2 commit 1f40ffb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/device/sio/network.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,10 @@ void sioNetwork::sio_set_json_query()
12081208

12091209
std::string inp_string;
12101210
if (last_colon_pos != std::string::npos) {
1211-
Debug_printf("sioNetwork::sio_set_json_query - skipped device spec. Application should be updated to remove it from query (%s)\r\n", in_string.c_str());
1211+
// Skip the device spec. There was a debug message here,
1212+
// but it was removed, because there are cases where
1213+
// removing the devicespec isn't possible, e.g. accessing
1214+
// via CIO (as an XIO). -thom
12121215
inp_string = in_string.substr(last_colon_pos + 1);
12131216
} else {
12141217
inp_string = in_string;

0 commit comments

Comments
 (0)