logging-with-bash.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  4. <title>2.3.7.2. Logging With Bash</title>
  5. <link rel="stylesheet" type="text/css" href="../book.css">
  6. <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
  7. <link rel="home" href="index.html" title="The Yocto Project Reference Manual">
  8. <link rel="up" href="recipe-logging-mechanisms.html" title="2.3.7. Recipe Logging Mechanisms">
  9. <link rel="prev" href="logging-with-python.html" title="2.3.7.1. Logging With Python">
  10. <link rel="next" href="usingpoky-debugging-others.html" title="2.3.8. Other Tips">
  11. </head>
  12. <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="section" title="2.3.7.2. Logging With Bash">
  13. <div class="titlepage"><div><div><h4 class="title">
  14. <a name="logging-with-bash"></a>2.3.7.2. Logging With Bash</h4></div></div></div>
  15. <p>
  16. When creating recipes using Bash and inserting code that handles build
  17. logs you have the same goals - informative with minimal console output.
  18. The syntax you use for recipes written in Bash is similar to that of
  19. recipes written in Python described in the previous section.
  20. </p>
  21. <p>
  22. Following is an example written in Bash.
  23. The code logs the progress of the <code class="filename">do_my_function</code> function.
  24. </p>
  25. <pre class="literallayout">
  26. do_my_function() {
  27. bbdebug 2 "Running do_my_function"
  28. if [ exceptional_condition ]; then
  29. bbnote "Hit exceptional_condition"
  30. fi
  31. bbdebug 2 "Got to point xyz"
  32. if [ warning_trigger ]; then
  33. bbwarn "Detected warning_trigger, this might cause a problem later."
  34. fi
  35. if [ recoverable_error ]; then
  36. bberror "Hit recoverable_error, correcting"
  37. fi
  38. if [ fatal_error ]; then
  39. bbfatal "fatal_error detected"
  40. fi
  41. bbdebug 2 "Completed do_my_function"
  42. }
  43. </pre>
  44. <p>
  45. </p>
  46. </div></body>
  47. </html>