diff options
author | David Robillard <d@drobilla.net> | 2012-04-12 23:21:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-12 23:21:46 +0000 |
commit | 9a582a3edcb9c6c0b2866920dc2b55e4178e3660 (patch) | |
tree | bfd225cb8b2bd4bb5cd7e9a03ed3b7c6ebb9a389 /lv2/lv2plug.in/ns/ext/log/log.ttl | |
parent | b7bd27b94932e10a85c0b781dae8a57402491b65 (diff) | |
download | lv2-9a582a3edcb9c6c0b2866920dc2b55e4178e3660.tar.xz |
Normalise syntax via serdi.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log/log.ttl')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/log/log.ttl | 19 |
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> |