Mac Terminal debug android for unity with logcat with grep

adb -d logcat Unity *:S

To filter only the Named words in logcat
(note the space is important)

adb logcat | grep "DM: "

To filter excluded result "CloudManagerLog:" and only accept the "DM: "

adb logcat | grep -i -v "CloudManagerLog:" | grep "DM: "