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