chore: add mnemonic to doxygen execution
diff --git a/doxygen/doxygen.bzl b/doxygen/doxygen.bzl
index f75bd29..6ceae0d 100644
--- a/doxygen/doxygen.bzl
+++ b/doxygen/doxygen.bzl
@@ -54,6 +54,10 @@
 def _doxygen_impl(ctx):
     doxyfile = ctx.actions.declare_file("Doxyfile")
 
+    print("VAR", ctx.var)
+    print("doxyfile", doxyfile.path)
+    print("doxyfile", doxyfile.dirname)
+
     output_group_info = {}
     outs = []
     for out in ctx.attr.outs:
@@ -83,8 +87,9 @@
         inputs = ctx.files.srcs + deps + [doxyfile],
         outputs = outs,
         arguments = [doxyfile.path] + ctx.attr.doxygen_extra_args,
-        progress_message = "Running doxygen",
         executable = ctx.executable._executable,
+        mnemonic = "DoxygenBuild",
+        progress_message = "Building doxygen documentation for rule '%s'" % ctx.label.name,
     )
 
     return [