Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
N
nisanci
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Ali GOREN
nisanci
Commits
2c2207cc
Kaydet (Commit)
2c2207cc
authored
May 16, 2019
tarafından
Ali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added missing comments
üst
71879178
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
Logger.ts
src/Logger.ts
+20
-0
No files found.
src/Logger.ts
Dosyayı görüntüle @
2c2207cc
...
...
@@ -2,6 +2,8 @@ import LogTypes, { Levels } from './LogTypes'
import
LogServer
from
'./LogServer'
import
Colors
from
'./Colors'
// inspired by: https://stackify.com/php-monolog-tutorial/
/**
* @description Logger class. This class will have logging functions
* @class Logger
...
...
@@ -54,10 +56,28 @@ class Logger {
return
`
${
date
}
${
time
}
`
}
/**
* @description This method will help to customize log messages.
* @param formatStr - The string which will formatted
* @todo
*/
public
setFormat
(
formatStr
:
string
)
{
this
.
isFormatted
=
true
}
/**
* @description This method helps to prepare output message
* @param details - An object
* @example
*
* const messageData = {
* foregroundColor: colors.FgWhite,
* backgroundColor: colors.BgRed,
* levelName: levelName,
* message: message,
* reset: colors.Reset
* }
*/
private
setMessage
(
details
:
any
)
{
const
logDate
=
this
.
getDateWithTime
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment