일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- digitalRead
- public
- inheritance
- APP
- sensor
- Class
- atmega328
- memory
- SERIAL
- flutter
- Binary
- Pointer
- Contour
- Encapusulation
- aduino
- wpf
- Unity
- java
- parameter
- preprocessing
- stream
- Barcode
- Read
- UNO
- Overloading
- file access
- length
- Android
- mfc
- compare
- Today
- Total
목록getlogger (2)
폴크(FOLC)
# 매우 빠른 C++ 로깅 전용 라이브러리 > 리눅스, FreeBSD, OpenBSD, 솔라리스, AIX, Windows, macOS 등 다양한 언어와 플랫폼을 지원한다. > 파일, 콘솔, DB로 출력할 수 있고 날짜, 파일 크기마다 생성가능하다. # 적용 방법 > https://cppget.org/spdlog/1.9.2 에서 검색 후 설치(download) > 파일 생성 주기를 설정할 수 있다. # 소스 코드 std::shared_ptr m_file; void CSPDLOG::Initialize(CStringA strPath, int dailyLogHour, int dailyLogMinute) { m_file = spdlog::daily_logger_mt("file", strPath, dailyLogH..
# 아파치의 오픈소스 라이브러리이다. > Java, C++, .NET 등 다양한 언어와 플랫폼을 지원한다. > 파일, 콘솔, DB로 출력할 수 있고 날짜, 파일 크기마다 생성가능하다. # 적용 방법 > NuGet 에서 "log4net" 검색 후 설치(download) # 환경 설정 > 환경설정을 code level 로 작성할 수도 있고 xml 파일을 연결해서 사용 가능하다. > 솔루션 탐색기에 추가 - 출력 디렉토리에 복사 ( 항상 복사 ) # source code / 로그 작성자를 활용하는 영역 > Class 단위 또는 포함 관계에 있는 Class 까지 운용 가능 # source code > using log4net.Config; > > namespace WindowsFormsApp1 { > publi..