專案中加入Error Log日誌

2021-05-31 21:51:40 字數 1420 閱讀 7514

// 全域性變數

extern file *fp_error; // general error file;

extern char error_filename[256]; // error file name

int write_error(char *string, ...);

int open_error_file(char *filename, file *fp_override);

int close_error_file(void);

file *fp_error = null;					// general error file;                          

char error_filename[256] = "你的錯誤日誌檔名.txt"; // error file name

//錯誤log輸出

///int write_error(char *string, ...)

// end write_error

///int open_error_file(char *filename, file *fp_override = null)

else

// get the current time

struct _timeb timebuffer;

char *timeline;

char timestring[280];

_ftime(&timebuffer);

timeline = ctime(&(timebuffer.time));

sprintf(timestring, "%.19s.%hu, %s", timeline, timebuffer.millitm, &timeline[20]);

// write out error header with time

write_error("\n*****====opening error output file*****====\r\n(%s) on %s\n",filename,timestring);

if (!fp_override)

// return success

return(1);

} // end open_error_file

///int close_error_file(void)

fp_error = null;

// return success

return(1);

} // end if

else

return(0);

} // end close_error_file

///

vue專案中加入拖放排序功能

2 引入 import draggable from vuedraggable 3 註冊元件 components 4 頁面元件 5 data中加上myarray陣列,自己加一些資料 現在就可以拖拽了,只是有個小問題,在移動端需要加個把手拖動,不然拖動會和頁面的滑動事件衝突 最後在vuedragga...

Django中加入日誌功能

1 django中加入日誌功能 django 中使用python的 logging 模組記錄log,在 django 中使用 django 提供的配製方法。就是在 settings 中通過變數 logging,logging 是乙個字典,典型的配置如下 logging模組為應用程式提供了靈活的手段記...

向你的C語言專案中加入多執行緒

c語言在標準庫中為程式設計師提供了多執行緒操作介面。int pthread create pthread t thread,pthread attr t attr,void start routine void arg void arg 執行緒建立 int pthread join pthread ...