diff --git a/build-files.txt b/build-files.txt index 8c32a0f..e22bcd5 100644 --- a/build-files.txt +++ b/build-files.txt @@ -34,7 +34,6 @@ source/dub/internal/undead/xml.d source/dub/internal/utils.d source/dub/internal/vibecompat/core/file.d -source/dub/internal/vibecompat/core/log.d source/dub/internal/vibecompat/data/json.d source/dub/internal/vibecompat/data/serialization.d source/dub/internal/vibecompat/data/utils.d diff --git a/source/dub/internal/git.d b/source/dub/internal/git.d index 24e3e7b..c8a371e 100644 --- a/source/dub/internal/git.d +++ b/source/dub/internal/git.d @@ -1,7 +1,7 @@ module dub.internal.git; import dub.internal.vibecompat.core.file; -import dub.internal.vibecompat.core.log; +import dub.internal.logging; import std.file; import std.string; diff --git a/source/dub/internal/vibecompat/core/log.d b/source/dub/internal/vibecompat/core/log.d deleted file mode 100644 index 5c65737..0000000 --- a/source/dub/internal/vibecompat/core/log.d +++ /dev/null @@ -1,14 +0,0 @@ -/** +deprecated("Please use dub.internal.logging") - This module contained logging functions, but has been replaced by dub.internal.logging - which provides colored output and other facilities. - - Copyright: © 2012 rejectedsoftware e.K., © 2018 Giacomo De Lazzari - License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. - Authors: Sönke Ludwig, Giacomo De Lazzari -*/ - -deprecated("Please use dub.internal.logging") - -module dub.internal.vibecompat.core.log; - -public import dub.internal.logging;