1*9dba64beSDimitry Andricinclude "../../../../include/lldb/Core/PropertiesBase.td" 2*9dba64beSDimitry Andric 3*9dba64beSDimitry Andriclet Definition = "darwinlog" in { 4*9dba64beSDimitry Andric def EnableOnStartup: Property<"enable-on-startup", "Boolean">, 5*9dba64beSDimitry Andric Global, 6*9dba64beSDimitry Andric DefaultFalse, 7*9dba64beSDimitry Andric Desc<"Enable Darwin os_log collection when debugged process is launched or attached.">; 8*9dba64beSDimitry Andric def AutoEnableOptions: Property<"auto-enable-options", "String">, 9*9dba64beSDimitry Andric Global, 10*9dba64beSDimitry Andric DefaultStringValue<"">, 11*9dba64beSDimitry Andric Desc<"Specify the options to 'plugin structured-data darwin-log enable' that should be applied when automatically enabling logging on startup/attach.">; 12*9dba64beSDimitry Andric} 13