diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/log/log.ttl | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lv2/lv2plug.in/ns/ext/log/log.ttl b/lv2/lv2plug.in/ns/ext/log/log.ttl index 26e18cc..60e1d3f 100644 --- a/lv2/lv2plug.in/ns/ext/log/log.ttl +++ b/lv2/lv2plug.in/ns/ext/log/log.ttl @@ -22,27 +22,32 @@ levels to suit their needs.</p> log:Entry a rdfs:Class ; + rdfs:label "Log Entry" ; lv2:documentation """ <p>A log entry. Subclasses of this class can be passed to LV2_Log_Log methods to describe the nature of the log message.</p>""" . log:Error a rdfs:Class ; + rdfs:label "Error" ; rdfs:subClassOf log:Entry ; - rdfs:comment "An error" . + rdfs:comment "An error message." . log:Note a rdfs:Class ; + rdfs:label "Note" ; rdfs:subClassOf log:Entry ; - rdfs:comment "An informative message" . + rdfs:comment "An informative message." . log:Warning a rdfs:Class ; + rdfs:label "Warning" ; rdfs:subClassOf log:Entry ; - rdfs:comment "A warning" . + rdfs:comment "A warning message." . log:Trace a rdfs:Class ; + rdfs:label "Trace" ; rdfs:subClassOf log:Entry ; lv2:documentation """ <p>A debugging trace. These entries should not be displayed during normal |