[Bf-docboard-svn] bf-manual: [7182] trunk/blender_docs/manual/advanced/app_templates.rst: Hint that path lookup logging can help troubleshoot app-templates not being found

Campbell Barton noreply at blender.org
Mon Oct 5 00:29:41 CEST 2020


Revision: 7182
          https://developer.blender.org/rBM7182
Author:   campbellbarton
Date:     2020-10-05 00:29:41 +0200 (Mon, 05 Oct 2020)
Log Message:
-----------
Hint that path lookup logging can help troubleshoot app-templates not being found

Modified Paths:
--------------
    trunk/blender_docs/manual/advanced/app_templates.rst

Modified: trunk/blender_docs/manual/advanced/app_templates.rst
===================================================================
--- trunk/blender_docs/manual/advanced/app_templates.rst	2020-10-04 22:05:51 UTC (rev 7181)
+++ trunk/blender_docs/manual/advanced/app_templates.rst	2020-10-04 22:29:41 UTC (rev 7182)
@@ -79,7 +79,22 @@
 
 See :ref:`blender-directory-layout` for details on script and configuration locations.
 
+.. hint:: Troubleshooting Paths
 
+   When creating a application-template, you may run into issues where paths are not being found.
+
+   To investigate this you can log output of all of Blender's path look-ups.
+
+   Example command line arguments that load Blender with a custom application-template
+   (replace ``my_app_template`` with the name of your own template):
+
+   .. code-block:: sh
+
+      blender --log "bke.appdir.*" --log-level -1 --app-template my_app_template
+
+   You can then check the paths where attemps to access ``my_app_template`` are made.
+
+
 Command Line Access
 -------------------
 



More information about the Bf-docboard-svn mailing list