qDoc is a tool for generating API documentation in HTML format from doc comments in q source code.
The qDoc format is heavily based on the JavaDoc format. qDoc is ran from the tools menu, when called it will generate documentation for all open files.

How to run qDoc from within QStudio

How to write doc comments for qDoc

Example

/ @param level - a logger.levels symbol, in order (higher priority first) `SEVERE`WARNING`INFO`CONFIG`FINE`FINER`FINEST
 1
2
3
4
5
6
 
/ #########################   logging to disk/table/console
/ a logger based on java's, including handlers,filters,formatters. But note there is only one gloal logger.
/ handlers - are notified when a logging event occurs
/ formatters - convert a logrecord into a string
/ filters - restrict what messages are actually logged
/ .

Output