diff options
author | David Robillard <d@drobilla.net> | 2015-03-16 04:49:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-03-16 04:49:42 -0400 |
commit | 4985c77f6c10df405cce02861fe885d131644b83 (patch) | |
tree | aaf95a92386e5fb2c25d8da6807c650ceac84457 /lv2/lv2plug.in/ns/ext/log/log.ttl | |
parent | 312614efa16da12a230d0ef7a918fd396d9972e3 (diff) | |
download | lv2-4985c77f6c10df405cce02861fe885d131644b83.tar.xz |
Clean up and add missing labels.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log/log.ttl')
-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 |