Changeset: ef659d97a7f8 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ef659d97a7f8
Modified Files:
        monetdb5/modules/mal/tracer.mal
Branch: gdk_tracer
Log Message:

add return types in mal


diffs (57 lines):

diff --git a/monetdb5/modules/mal/tracer.mal b/monetdb5/modules/mal/tracer.mal
--- a/monetdb5/modules/mal/tracer.mal
+++ b/monetdb5/modules/mal/tracer.mal
@@ -6,43 +6,43 @@
 
 module logging;
 
-command flush()
+command flush() :void
 address TRACERflush_buffer
 comment "Flush the buffer";
 
-command setcomplevel(comp:int, lvl:int)
+command setcomplevel(comp:int, lvl:int) :void
 address TRACERset_component_level
 comment "Sets the log level for a specific component";
 
-command resetcomplevel(comp:int)
+command resetcomplevel(comp:int) :void
 address TRACERreset_component_level
 comment "Resets the log level for a specific component back to the default";
 
-command setlayerlevel(layer:int, lvl:int)
+command setlayerlevel(layer:int, lvl:int) :void
 address TRACERset_layer_level
 comment "Sets the log level for a specific layer";
 
-command resetlayerlevel(layer:int)
+command resetlayerlevel(layer:int) :void
 address TRACERreset_layer_level
 comment "Resets the log level for a specific layer back to the default";
 
-command setflushlevel(lvl:int)
+command setflushlevel(lvl:int) :void
 address TRACERset_flush_level
 comment "Sets the flush level";
 
-command resetflushlevel()
+command resetflushlevel() :void
 address TRACERreset_flush_level
 comment "Resets the flush level back to the default";
 
-command setadapter(adapter:int)
+command setadapter(adapter:int) :void
 address TRACERset_adapter
 comment "Sets the adapter";
 
-command resetadapter()
+command resetadapter() :void
 address TRACERreset_adapter
 comment "Resets the adapter back to the default";
 
-command showinfo()
+command showinfo() :void
 address TRACERshow_info
 comment "Dumps to the console all the available logging levels, layers and the 
components
 along with their current logging level being set";
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to