From 164d2284f2b6bb8cb0d1c0436ccef851ff79a236 Mon Sep 17 00:00:00 2001 From: Clayton Burlison Date: Tue, 25 May 2021 23:06:46 -0500 Subject: [PATCH] Add single quote to fix log command (#753) --- website/content/blog/troubleshoot-dep.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/blog/troubleshoot-dep.md b/website/content/blog/troubleshoot-dep.md index ad0df9fc..7b0f567f 100644 --- a/website/content/blog/troubleshoot-dep.md +++ b/website/content/blog/troubleshoot-dep.md @@ -54,7 +54,7 @@ To filter out MDM specific log message, start by adding the following predicates ``` log stream --info --debug --predicate 'subsystem contains "com.apple.ManagedClient.cloudconfigurationd"' -log stream --info --debug --predicate 'processImagePath contains "mdmclient" OR processImagePath contains "storedownloadd" +log stream --info --debug --predicate 'processImagePath contains "mdmclient" OR processImagePath contains "storedownloadd"' ``` As you're watching the log stream, you might want to adjust the predicates to add or remove new conditions. [This blog](https://eclecticlight.co/2016/10/01/using-the-logs-in-sierra-some-practical-tips/) is a good primer on the log command. `man log` has some additional usage examples as well.