Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Logger{
- public void LOG_spi(string _msg) { LOG("spi", _msg); }
- public void LOG_gui(string _msg) { LOG("gui", _msg); }
- public void LOG_log(string _msg) { LOG("log", _msg); }
- public void LOG_mot(string _msg) { LOG("mot", _msg); }
- public void LOG_motX(byte id, string _msg) { LOG(string.Format("mot{0}", id), _msg); }
- public void LOG_motX_e(byte id, string _msg) { LOG_type(string.Format("mot{0}", id), _msg,"error"); }
- public void LOG(string _src, string _msg)
- {
- itemList.Add(new LogMessageRow { src = _src, msg = _msg });
- // ObservableCollection<LogMessageRow>.CollectionChanged +=;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment