summaryrefslogtreecommitdiff
path: root/1Tdata/xbase/xbase64-4.1.4/src/examples/xb_ex_log.cpp
blob: cf5320f30bece04140bccb7d94c85146242f227e (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*  xb_ex_log.cpp

XBase64 Software Library

Copyright (c) 1997,2003,2014,2022,2023 Gary A Kunkel

The xb64 software library is covered under the terms of the GPL Version 3, 2007 license.

Email Contact:

    XDB-devel@lists.sourceforge.net
    XDB-users@lists.sourceforge.net

*/

// This program demostrates how to use logging


#include "xbase.h"

using namespace xb;

int main( int argCnt, char **av )
{

  #ifdef XB_LOGGING_SUPPORT

  xbXBase  x;
  xbString sMsg;


  std::cout << "Default Logfile Name is: [" << x.GetLogFqFileName().Str() 
            << "]  Rollover size = [" << x.GetLogSize() 
            << "]" << std::endl;

  if( x.GetLogStatus() )
    std::cout << "Logging is active" << std::endl;
  else
    std::cout << "Logging is inactive" << std::endl;

  x.SetLogDirectory( PROJECT_LOG_DIR );               // use the library log directory
  x.SetLogFileName ( "MySpecialLogFile.txt" );        // set to use a special name
  x.SetLogSize     ( x.GetLogSize() * 2 );            // double the log file size

  // enable the logfile and write a message for the new settings to take effect
  x.EnableMsgLogging();
  sMsg.Sprintf( "Program [%s] initializing...", av[0] );
  x.WriteLogMessage( sMsg );

  std::cout << "New Logfile Name is: [" << x.GetLogFqFileName().Str()
            << "]  Rollover size = [" << x.GetLogSize() 
            << "]" << std::endl;

  if( x.GetLogStatus() )
    std::cout << "Logging is active" << std::endl;
  else
    std::cout << "Logging is inactive" << std::endl;

  // write some messages to the logfile
  for( int i = 0; i < 5; i++ ){
    sMsg.Sprintf( "Test message [%d]", i );
    x.WriteLogMessage( sMsg );
  }

  sMsg.Sprintf( "Program [%s] terminating..", av[0] );
  x.WriteLogMessage( sMsg );

  x.FlushLog();   // not really needed, but here for demonstration purposes

  #endif          // B_LOGGING_SUPPORT

  return 0;
}