summaryrefslogtreecommitdiff
path: root/Kernel/Modules
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-03-12 17:29:37 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-12 17:29:37 +0100
commitef1e5db1d063f55e57b1d7623ea7154583fc95ad (patch)
treefb92514e07f4017cb899258137c817c07da9d5c5 /Kernel/Modules
parent423ed5339651a2646c64ee4fd7b3b32bb7f8c942 (diff)
downloadserenity-ef1e5db1d063f55e57b1d7623ea7154583fc95ad.zip
Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)
Good-bye LogStream. Long live AK::Format!
Diffstat (limited to 'Kernel/Modules')
-rw-r--r--Kernel/Modules/TestModule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Modules/TestModule.cpp b/Kernel/Modules/TestModule.cpp
index fbfdbc7416..2e61e76c96 100644
--- a/Kernel/Modules/TestModule.cpp
+++ b/Kernel/Modules/TestModule.cpp
@@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <AK/LogStream.h>
+#include <AK/Format.h>
#include <Kernel/Modules/module_syms.h>
extern "C" const char module_name[] = "TestModule";