WSEnableLoggingStream (C 関数)

int WSEnableLoggingStream ( WSLINK l )

WSDisableLoggingStream()への呼出しによって先に無効にされた,l が指定するWSTP接続に対するロギングを有効にする.

詳細

  • l が前にWSLogStreamToFile()でロギングをアクティベートされていない場合には,WSEnableLoggingStream()がロギングの仕組みをアクティベートする.
  • WSDisableLoggingStream()WSEnableLoggingStream()は,リンクへのロギングを有効および無効にするトグルAPIの仕組みとして働く.
  • WSEnableLoggingStream()は,エラーがあった場合には0を,成功した場合には非零の値を返す.
  • WSEnableLoggingStream()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

int main(int argc, char **argv)
{
    WSENV env;
    WSLINK link;
    int error;
    int apiResult;

    env = WSInitialize((WSEnvironmentParameter)0);
    if(env == (WSENV)0)
    { /* Unable to create WSTP environment object */ }

    link = WSOpenArgcArgv(env, argc, argv, &error)l;
    if(link == (WSLINK)0 || error != WSEOK)
    { /* Unable to create link object */ }

    WSActivate(link);

    /* ... */

    apiResult = WSLogStreamToFile(link, "/path/to/logFile.log");
    { /* unable to log to logFile.log */ }

    /* ... */

    apiResult = WSDisableLoggingStream(link);
    { /* error disabling logging to log file */ }

    /* ... */

    apiResult = WSEnableLoggingStream(link);
    { /* error re-enabling logging */ }

    /* ... */

    apiResult = WSStopLoggingStream(link);
    { /* error shutting down logging */ }

    WSClose(link);

    WSDeinitialize(env);
}