1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

pr: print padded string for each column and handle tab issues

pr: Print fixed padded string for each column

pr: Fix display length vs str length due to tabs
This commit is contained in:
Tilak Patidar 2018-12-17 12:40:35 +05:30 committed by Max Semenik
parent b578bb6563
commit f3676573b5
5 changed files with 239 additions and 219 deletions

View file

@ -27,9 +27,11 @@ use std::convert::From;
use getopts::HasArg;
use getopts::Occur;
use std::num::ParseIntError;
use std::str::Chars;
static NAME: &str = "pr";
static VERSION: &str = env!("CARGO_PKG_VERSION");
static TAB: char = '\t';
static LINES_PER_PAGE: usize = 66;
static HEADER_LINES_PER_PAGE: usize = 5;
static TRAILER_LINES_PER_PAGE: usize = 5;
@ -684,7 +686,7 @@ fn write_columns(lines: &Vec<String>, options: &OutputOptions, out: &mut Stdout,
for start in 0..content_lines_per_page {
let indexes: Vec<usize> = get_indexes(start, content_lines_per_page, columns);
let mut line = String::new();
let mut line: Vec<String> = Vec::new();
for index in indexes {
if lines.get(index).is_none() {
break;
@ -693,13 +695,13 @@ fn write_columns(lines: &Vec<String>, options: &OutputOptions, out: &mut Stdout,
let next_line_number = line_number + index + 1;
let trimmed_line = get_line_for_printing(
next_line_number, &width,
&number_separator, columns,
col_sep, col_width,
&number_separator, columns, col_width,
read_line, is_number_mode);
line.push_str(&trimmed_line);
line.push(trimmed_line);
i += 1;
}
out.write(line.as_bytes())?;
out.write(line.join(col_sep).as_bytes())?;
if i == lines.len() {
out.write(page_separator)?;
} else {
@ -710,17 +712,37 @@ fn write_columns(lines: &Vec<String>, options: &OutputOptions, out: &mut Stdout,
}
fn get_line_for_printing(line_number: usize, width: &usize,
separator: &String, columns: usize, col_sep: &String, col_width: Option<usize>,
separator: &String, columns: usize,
col_width: Option<usize>,
read_line: &String, is_number_mode: bool) -> String {
let fmtd_line_number: String = if is_number_mode {
get_fmtd_line_number(&width, line_number, &separator)
} else {
"".to_string()
};
let complete_line = format!("{}{}{}", fmtd_line_number, read_line, col_sep);
let mut complete_line = format!("{}{}", fmtd_line_number, read_line);
let tab_count: usize = complete_line
.chars()
.filter(|i| i == &TAB)
.count();
let display_length = complete_line.len() + (tab_count * 7);
// TODO Adjust the width according to -n option
// TODO Line has less content than the column width
col_width.map(|i| complete_line.chars().take(i / columns).collect()).unwrap_or(complete_line)
// TODO actual len of the string vs display len of string because of tabs
col_width.map(|i| {
let min_width = (i - (columns - 1)) / columns;
if display_length < min_width {
for _i in 0..(min_width - display_length) {
complete_line.push(' ');
}
}
complete_line
.chars()
.take(min_width)
.collect()
}).unwrap_or(complete_line)
}
fn get_indexes(start: usize, content_lines_per_page: usize, columns: usize) -> Vec<usize> {

View file

@ -3,96 +3,96 @@
{last_modified_time} test.log Page 2
1 ntation processAirPortStateChanges]: pppConnectionState 0
2 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
3 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
4 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
5 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
6 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
7 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
8 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
9 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
10 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
11 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
12 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
13 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
14 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
15 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
16 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
17 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
18 Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
19 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
20 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
21 Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
22 Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
23 Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
24 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
25 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
26 Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
27 Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
28 Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
29 Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
30 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
31 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
32 Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
33 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
34 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
35 Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
36 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
37 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
38 Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
39 Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
40 Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
41 Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
42 Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
43 Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
44 Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
45 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
46 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
47 Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
48 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
49 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
50 Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
51 Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
52 Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
53 Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
54 Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
55 Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
56 Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
57 Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
58 Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
59 Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: APPLE80211_M_ROAM_END (en0)
60 Mon Dec 10 11:42:59.372 Info: <airportd[160]> Roaming ended on interface en0
61 Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: RSN_HANDSHAKE_DONE (en0)
62 Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWXPCInterfaceContext setRoamInProgress:reason:]_block_invoke: roam status metric data: CWAWDMetricRoamStatus: status:0 security: 4 profile:5 origin:<34fcb9>(-69) target:<6cf37f>(-56) latency:6.083439s
63 Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90046
64 Mon Dec 10 11:42:59.373 Info: <airportd[160]> RESUME AWDL for interface en0, reason=Roam token=2685
65 Mon Dec 10 11:42:59.373 Info: <airportd[160]> PRIORITY LOCK REMOVED [client=airportd, type=4, interface=en0, priority=5]
66 Mon Dec 10 11:42:59.374 Info: <airportd[160]> -[CWXPCInterfaceContext __setAWDLOperatingMode:interface:error:]: attempting to set AWDL mode to 0
67 Mon Dec 10 11:43:01.072 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP'
68 Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP
69 Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: DHCP airport_changed = 1
70 Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWXPCSubsystem internal_submitIPConfigLatencyMetric:leaseDuration:]: IPConfig Latency metric data: CWAWDMetricIPConfigLatencyData: DHCP latency: 29010 msecs, duration: 480 mins, security: 4
71 Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90007
72 Mon Dec 10 11:43:01.073 SC: <airportd[160]> _setDHCPMessage: dhcpInfoKey "State:/Network/Interface/en0/AirPort/DHCP Message" = (null)
73 Mon Dec 10 11:43:10.369 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
74 Mon Dec 10 11:43:10.369 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=162 Mbps
75 Mon Dec 10 11:43:10.369 Info: <Wi-Fi Menu Extra[335]> link quality changed
76 Mon Dec 10 11:43:23.376 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
77 Mon Dec 10 11:43:23.377 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
78 Mon Dec 10 11:43:23.377 Info: <Wi-Fi Menu Extra[335]> link quality changed
79 Mon Dec 10 11:43:28.380 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
80 Mon Dec 10 11:43:28.380 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
81 Mon Dec 10 11:43:28.380 Info: <Wi-Fi Menu Extra[335]> link quality changed
82 Mon Dec 10 11:43:31.744 AutoJoin: <airportd[160]> BACKGROUND SCAN request on interface en0 with SSID list (null)
83 Mon Dec 10 11:43:31.747 Scan: <airportd[160]> Cache-assisted scan request on channel 1 does not require a live scan
84 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 2 does not require a live scan
85 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 3 does not require a live scan
86 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
87 Mon Dec 10 11:43:31.748 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
88 Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd22180> [channelNumber=1(2GHz), channelWidth={20MHz}, active],
89 Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd284a0> [channelNumber=2(2GHz), channelWidth={20MHz}, active],
90 Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd13910> [channelNumber=3(2GHz), channelWidth={20MHz}, active]
1 Mon Dec 10 11:43:31.748 )} took 0.0025 seconds, returned 10 results
2 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 4 does not require a live scan
3 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 5 does not require a live scan
4 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 6 does not require a live scan
5 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
6 Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
7 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0e7e0> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
8 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd18a40> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
9 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0ae10> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
10 Mon Dec 10 11:43:31.749 )} took 0.0008 seconds, returned 7 results
11 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 7 does not require a live scan
12 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 8 does not require a live scan
13 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 9 does not require a live scan
14 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
15 Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
16 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd57a80> [channelNumber=7(2GHz), channelWidth={20MHz}, active],
17 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd32290> [channelNumber=8(2GHz), channelWidth={20MHz}, active],
18 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd77ab0> [channelNumber=9(2GHz), channelWidth={20MHz}, active]
19 Mon Dec 10 11:43:31.749 )} took 0.0002 seconds, returned 1 results
20 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 10 does not require a live scan
21 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 11 does not require a live scan
22 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 12 does not require a live scan
23 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
24 Mon Dec 10 11:43:31.750 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
25 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd15170> [channelNumber=10(2GHz), channelWidth={20MHz}, active],
26 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd8dfe0> [channelNumber=11(2GHz), channelWidth={20MHz}, active],
27 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd67f40> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
28 Mon Dec 10 11:43:31.750 )} took 0.0004 seconds, returned 4 results
29 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
30 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
31 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
32 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
33 Mon Dec 10 11:43:31.751 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
34 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd01390> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
35 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd14e50> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
36 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd11a60> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
37 Mon Dec 10 11:43:31.751 )} took 0.0009 seconds, returned 9 results
38 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
39 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
40 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
41 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
42 Mon Dec 10 11:43:31.752 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
43 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd0d1b0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
44 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd1e420> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
45 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd1bdd0> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
46 Mon Dec 10 11:43:31.752 )} took 0.0010 seconds, returned 9 results
47 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
48 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
49 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
50 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
51 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
52 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd572d0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
53 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd16030> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
54 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd74ee0> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
55 Mon Dec 10 11:43:31.753 )} took 0.0007 seconds, returned 9 results
56 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
57 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
58 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
59 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
60 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
61 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd48070> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
62 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcdb97b0> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
63 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd097e0> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
64 Mon Dec 10 11:43:31.753 )} took 0.0005 seconds, returned 6 results
65 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
66 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
67 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
68 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
69 Mon Dec 10 11:43:31.754 <CWChannel: 0x7fc3fcd10860> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
70 Mon Dec 10 11:43:31.754 <CWChannel: 0x7fc3fcd0e430> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
71 Mon Dec 10 11:43:31.754 )} took 0.0003 seconds, returned 4 results
72 Mon Dec 10 11:43:42.382 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
73 Mon Dec 10 11:43:42.382 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=270 Mbps
74 Mon Dec 10 11:43:42.383 Info: <Wi-Fi Menu Extra[335]> link quality changed
75 Mon Dec 10 11:49:12.347 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
76 Mon Dec 10 11:49:12.350 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
77 Mon Dec 10 11:52:32.194 Info: <airportd[160]> SCAN request received from pid 92 (locationd) with priority 2
78 Mon Dec 10 11:52:32.448 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
79 Mon Dec 10 11:52:32.450 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
80 Mon Dec 10 11:52:32.451 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
81 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd11420> [channelNumber=1(2GHz), channelWidth={20MHz}, active],
82 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd11560> [channelNumber=2(2GHz), channelWidth={20MHz}, active],
83 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcdab8c0> [channelNumber=3(2GHz), channelWidth={20MHz}, active],
84 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd15400> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
85 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd21bc0> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
86 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd16540> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
87 Mon Dec 10 11:52:32.451 )} took 0.2566 seconds, returned 10 results
88 Mon Dec 10 11:52:32.451 Info: <Wi-Fi Menu Extra[335]> scan cache updated
89 Mon Dec 10 11:52:32.712 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
90 Mon Dec 10 11:52:32.715 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)

View file

@ -1,10 +1,10 @@
1 ntation processAirPortStateChanges]: pppConnectionState 0
2 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
3 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
4 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
5 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
1 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
2 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
3 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
4 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
5 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
6 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
7 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
8 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
9 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
10 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
10 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed

View file

@ -3,62 +3,62 @@
{last_modified_time} test.log Page 15
ntation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 12:05:48.183 <CWChannel: 0x7fc3ff50d600> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
Mon Dec 10 12:05:48.183 )} took 0.0007 seconds, returned 4 results
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.184 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55aa40> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff504b10> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55b310> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
Mon Dec 10 12:05:48.184 )} took 0.0007 seconds, returned 5 results
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.185 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff50cca0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff55ac00> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff532a50> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
Mon Dec 10 12:05:48.185 )} took 0.0006 seconds, returned 4 results
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.186 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5571c0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5503a0> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff55fe50> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
Mon Dec 10 12:05:48.186 )} took 0.0010 seconds, returned 7 results
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.187 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff513800> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff524d50> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff550d80> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
Mon Dec 10 12:05:48.187 )} took 0.0008 seconds, returned 5 results
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
Mon Dec 10 12:05:48.188 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.188 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff54cf50> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff538220> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
Mon Dec 10 12:05:48.188 )} took 0.0013 seconds, returned 8 results
Mon Dec 10 12:05:50.375 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
Mon Dec 10 12:05:50.375 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
Mon Dec 10 12:05:50.376 Info: <Wi-Fi Menu Extra[335]> link quality changed
Mon Dec 10 12:05:55.378 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
Mon Dec 10 12:05:55.378 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-56 dBm TxRate=243 Mbps
Mon Dec 10 12:05:55.379 Info: <Wi-Fi Menu Extra[335]> link quality changed
Mon Dec 10 12:06:28.759 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
Mon Dec 10 12:06:28.763 Info: <airportd[160]> AWDL started
Mon Dec 10 12:06:28.763 Driver Event: <airportd[160]> _bsd_80211_event_callback: CHANNEL_SWITCH (en0)
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 2.4GHz on en0
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 5GHz on en0

View file

@ -3,62 +3,62 @@
{last_modified_time} test.log Page 15
ntation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
Mon Dec 10 12:05:48.183 <CWChannel: 0x7fc3ff50d600> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
Mon Dec 10 12:05:48.183 )} took 0.0007 seconds, returned 4 results
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.184 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55aa40> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff504b10> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55b310> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
Mon Dec 10 12:05:48.184 )} took 0.0007 seconds, returned 5 results
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.185 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff50cca0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff55ac00> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff532a50> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
Mon Dec 10 12:05:48.185 )} took 0.0006 seconds, returned 4 results
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.186 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5571c0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5503a0> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff55fe50> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
Mon Dec 10 12:05:48.186 )} took 0.0010 seconds, returned 7 results
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.187 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff513800> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff524d50> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff550d80> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
Mon Dec 10 12:05:48.187 )} took 0.0008 seconds, returned 5 results
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
Mon Dec 10 12:05:48.188 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
Mon Dec 10 12:05:48.188 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff54cf50> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff538220> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
Mon Dec 10 12:05:48.188 )} took 0.0013 seconds, returned 8 results
Mon Dec 10 12:05:50.375 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
Mon Dec 10 12:05:50.375 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
Mon Dec 10 12:05:50.376 Info: <Wi-Fi Menu Extra[335]> link quality changed
Mon Dec 10 12:05:55.378 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
Mon Dec 10 12:05:55.378 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-56 dBm TxRate=243 Mbps
Mon Dec 10 12:05:55.379 Info: <Wi-Fi Menu Extra[335]> link quality changed
Mon Dec 10 12:06:28.759 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
Mon Dec 10 12:06:28.763 Info: <airportd[160]> AWDL started
Mon Dec 10 12:06:28.763 Driver Event: <airportd[160]> _bsd_80211_event_callback: CHANNEL_SWITCH (en0)
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 2.4GHz on en0
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 5GHz on en0
@ -196,5 +196,3 @@ Mon Dec 10 12:13:27.640 Info: <Wi-Fi Menu Extra[335]> link quality changed