Current section
Files
Jump to
Current section
Files
lib_src/nerves_runtime/dmesg.ex
# SPDX-FileCopyrightText: 2023 Frank Hunleth
#
# SPDX-License-Identifier: Apache-2.0
#
defmodule Toolshed.NervesRuntime.Dmesg do
@doc """
Print out kernel log messages
"""
@spec dmesg() :: :"do not show this result in output"
def dmesg() do
Toolshed.cmd("dmesg")
IEx.dont_display_result()
end
end