1. 19 6月, 2019 1 次提交
  2. 14 12月, 2018 1 次提交
  3. 03 1月, 2018 1 次提交
  4. 03 11月, 2017 1 次提交
    • A
      Remove backslash alignment attempts · 3e7db8d3
      Andrea Bolognani 提交于
      Right-aligning backslashes when defining macros or using complex
      commands in Makefiles looks cute, but as soon as any changes is
      required to the code you end up with either distractingly broken
      alignment or unnecessarily big diffs where most of the changes
      are just pushing all backslashes a few characters to one side.
      
      Generated using
      
        $ git grep -El '[[:blank:]][[:blank:]]\\$' | \
          grep -E '*\.([chx]|am|mk)$$' | \
          while read f; do \
            sed -Ei 's/[[:blank:]]*[[:blank:]]\\$/ \\/g' "$f"; \
          done
      Signed-off-by: NAndrea Bolognani <abologna@redhat.com>
      3e7db8d3
  5. 15 1月, 2015 1 次提交
    • D
      Log dtrace/systemd probes at INFO level instead of DEBUG · d654bc41
      Daniel P. Berrange 提交于
      Every dtrace/systemd probe also include a libvirt log message.
      These are logged at level DEBUG currently, which means if you
      want to see all probes they are drowned by the rest of the
      DEBUG messages. Since we don't really use the INFO log level
      for much, it seems reasonable to suggest we log all probes at
      level INFO.
      d654bc41
  6. 18 3月, 2014 2 次提交