Skip to content

Commit 0b3ae52

Browse files
committed
Tweak logging
1 parent 7da9967 commit 0b3ae52

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

core/pva/src/main/java/org/epics/pva/client/ChannelSearch.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,6 @@ else if (count == 0)
370370
break;
371371

372372
final List<PVAChannel> batch = to_search.subList(start, start + count);
373-
logger.log(Level.FINE, "Search bucket " + current_search_bucket.get() + " " + batch);
374-
375373
// PVAChannel extends SearchRequest.Channel, so use List<PVAChannel> as Collection<SR.Channel>
376374
search((Collection<SearchRequest.Channel>) (List<? extends SearchRequest.Channel>)batch);
377375
start += count;
@@ -411,7 +409,7 @@ private void search(final Collection<SearchRequest.Channel> channels)
411409

412410
// Search sequence identifies the potentially repeated UDP.
413411
// TCP search is once only, so PVXS always sends 0x66696E64 = "find".
414-
// We send "look".
412+
// We send "look" ("kool" for little endian).
415413
final int seq = 0x6C6F6F6B;
416414

417415
// Use 'any' reply address since reply will be via this TCP socket

0 commit comments

Comments
 (0)