Lines Matching refs:private
79 …ed in plaintext; parameters labeled **{private}** (default value) are private data and are filtere…
84 …ng `"%{public}s World %{private}d"`. The variable `%{public}s` is a plaintext string, and the vari…
87 hilog.debug(0x0001, "testTag", "%{public}s World %{private}d", "hello", 3);
90 If `"hello"` is filled in `%{public}s` and `3` in `%{private}d`, the output log is as follows:
93 08-05 12:21:47.579 2695 2703 D A00001/testTag: hello World <private>
112 …ed in plaintext; parameters labeled **{private}** (default value) are private data and are filtere…
117 …ng `"%{public}s World %{private}d"`. The variable `%{public}s` is a plaintext string, and the vari…
120 hilog.info(0x0001, "testTag", "%{public}s World %{private}d", "hello", 3);
123 If `"hello"` is filled in `%{public}s` and `3` in `%{private}d`, the output log is as follows:
126 08-05 12:21:47.579 2695 2703 I A00001/testTag: hello World <private>
145 …ed in plaintext; parameters labeled **{private}** (default value) are private data and are filtere…
150 …ng `"%{public}s World %{private}d"`. The variable `%{public}s` is a plaintext string, and the vari…
153 hilog.warn(0x0001, "testTag", "%{public}s World %{private}d", "hello", 3);
156 If `"hello"` is filled in `%{public}s` and `3` in `%{private}d`, the output log is as follows:
159 08-05 12:21:47.579 2695 2703 W A00001/testTag: hello World <private>
178 …ed in plaintext; parameters labeled **{private}** (default value) are private data and are filtere…
183 …ng `"%{public}s World %{private}d"`. The variable `%{public}s` is a plaintext string, and the vari…
186 hilog.error(0x0001, "testTag", "%{public}s World %{private}d", "hello", 3);
189 If `"hello"` is filled in `%{public}s` and `3` in `%{private}d`, the output log is as follows:
192 08-05 12:21:47.579 2695 2703 E A00001/testTag: hello World <private>
211 …ed in plaintext; parameters labeled **{private}** (default value) are private data and are filtere…
216 …ng `"%{public}s World %{private}d"`. The variable `%{public}s` is a plaintext string, and the vari…
219 hilog.fatal(0x0001, "testTag", "%{public}s World %{private}d", "hello", 3);
222 If `"hello"` is filled in `%{public}s` and `3` in `%{private}d`, the output log is as follows:
225 08-05 12:21:47.579 2695 2703 F A00001/testTag: hello World <private>
232 %{[private flag]}specifier
236 | Unspecified | The default value is **private**, indicating that parameters in plaintext …
237 | private | Prints private parameters.|
254 hilog.info(0x0001, "jsHilogTest", "private flag: %{private}s %s, print null: %{public}s", "hello", …
264 08-09 13:26:29.094 2266 2266 I A00001/jsHilogTest: private flag: <private> <private>, print null:…