aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext/log
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-03-16 04:49:42 -0400
committerDavid Robillard <d@drobilla.net>2015-03-16 04:49:42 -0400
commit4985c77f6c10df405cce02861fe885d131644b83 (patch)
treeaaf95a92386e5fb2c25d8da6807c650ceac84457 /lv2/lv2plug.in/ns/ext/log
parent312614efa16da12a230d0ef7a918fd396d9972e3 (diff)
downloadlv2-4985c77f6c10df405cce02861fe885d131644b83.tar.xz
Clean up and add missing labels.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log')
-rw-r--r--lv2/lv2plug.in/ns/ext/log/log.ttl11
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