aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/lv2plug.in/ns/ext/log
diff options
context:
space:
mode:
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log')
-rw-r--r--lv2/lv2plug.in/ns/ext/log/log.ttl19
1 files changed, 10 insertions, 9 deletions
diff --git a/lv2/lv2plug.in/ns/ext/log/log.ttl b/lv2/lv2plug.in/ns/ext/log/log.ttl
index 246445b..7d897d6 100644
--- a/lv2/lv2plug.in/ns/ext/log/log.ttl
+++ b/lv2/lv2plug.in/ns/ext/log/log.ttl
@@ -8,7 +8,8 @@
<http://lv2plug.in/ns/ext/log>
a lv2:Specification ;
- rdfs:seeAlso <log.h> , <../../meta/meta.ttl> ;
+ rdfs:seeAlso <log.h> ,
+ <../../meta/meta.ttl> ;
doap:name "LV2 Log" ;
doap:shortdesc "A feature for writing log messages." ;
doap:created "2012-01-12" ;
@@ -33,23 +34,23 @@ to describe the nature of the log message.</p>""" .
log:Error
a rdfs:Class ;
- rdfs:subClassOf log:Entry ;
- rdfs:comment "An error" .
+ rdfs:subClassOf log:Entry ;
+ rdfs:comment "An error" .
log:Note
a rdfs:Class ;
- rdfs:subClassOf log:Entry ;
- rdfs:comment "An informative message" .
+ rdfs:subClassOf log:Entry ;
+ rdfs:comment "An informative message" .
log:Warning
a rdfs:Class ;
- rdfs:subClassOf log:Entry ;
- rdfs:comment "A warning" .
+ rdfs:subClassOf log:Entry ;
+ rdfs:comment "A warning" .
log:Trace
a rdfs:Class ;
- rdfs:subClassOf log:Entry ;
- lv2:documentation """
+ rdfs:subClassOf log:Entry ;
+ lv2:documentation """
<p>A debugging trace. These entries should not be displayed during normal
operation, but the host may implement an option to display them for debugging
purposes.</p>