Make a note of what we end up with
diff --git a/aardvark.py b/aardvark.py
index 20209bc..44ac18c 100644
--- a/aardvark.py
+++ b/aardvark.py
@@ -87,6 +87,10 @@
             major, minor, _ = platform.release().split('.', 2)
             if major > "4" or (major >= "4" and minor >= "18"):
                 self.asyncwrite = True
+        if self.asyncwrite:
+            print("Utilizing kernel support for asynchronous writing of files")
+        else:
+            print("Kernel does not support asynchronous writing of files, falling back to synced writing")
 
         # If config file, load that into the vars
         if config_file: