250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 터치디자이너 인터페이스
- 터치디자이너 reference
- 터치디자이너 interface
- 터치디자이너 클론
- touchdesinger
- particleGPU
- 터치디자이너 파이썬
- 터치디자이너 오퍼레이터
- 터치디자이너 참조
- 터치디자이너 if
- 파이썬 if
- touchdesigner GPU
- 터치디자이너 replicator
- 터치디자이너 timeline
- 터치디자이너 함수
- displace
- 터치디자이너 에이블톤
- 파이썬
- 터치디자이너 python
- 파이썬reference
- 터치디자이너
- 터치디자이너 강의
- TouchDesigner
- TDableton
- ableton live 10
- touchdesigner particle
- 터치디자이너 튜토리얼
- 터치디자이너 Instancing
- touchdesigner displace
- 터치디자이너 list
Archives
- Today
- Total
caLAB
error Log txt파일 만들기 본문
728x90
error2_callbacks : error + warning 메시지 선별하는 코드
import time
def onError(dat, rowIndex, message, absFrame, frame, severity, type, source):
if severity == 2:
s = str('warning')
op('errorMsg').replaceCol(0, str(source))
op('errorMsg').replaceCol(1, str(message))
op('errorMsg').replaceCol(2, s)
if severity == 3:
s = str('error')
op('errorMsg').replaceCol(0, str(source))
op('errorMsg').replaceCol(1, str(message))
op('errorMsg').replaceCol(2, s)
return
datexec1(DAT execute) : 값이 바뀔 때만 file out으로 텍스트 파일 업데이트
import time
def onTableChange(dat):
t = time.localtime()
current_time = time.strftime("%H:%M:%S", t)
log = op('logTxt')
em = op('errorMsg')
fo = op('fileout1')
log.clear()
log.write(str('\n<<========== ') +str(current_time) + str(' ==========>>') +
str('\nseverity: ') + str(em[0,2]) +
str('\nsource: ') + str(em[0,0]) +
str('\nmessage: ') + str(em[0,1]))
print(str('\n<<========== ') +str(current_time) + str(' ==========>>') +
str('\nseverity: ') + str(em[0,2]) +
str('\nsource: ') + str(em[0,0]) +
str('\nmessage: ') + str(em[0,1]))
fo.par.write.pulse()
return
def onRowChange(dat, rows):
return
def onColChange(dat, cols):
return
def onCellChange(dat, cells, prev):
return
def onSizeChange(dat):
return
728x90
반응형
'TouchDesigner > TouchDesigner 코드' 카테고리의 다른 글
컴퓨터 재부팅 제어 (0) | 2021.06.09 |
---|---|
터치디자이너 스크립트로 expression Referencing하기 (0) | 2021.05.28 |
터치디자이너 UI class - chosseFile(브라우저로 파일 선택) (0) | 2021.05.27 |
audio fade in / out (0) | 2021.05.20 |
batch 파일 만들기 및 패스워드 설정 (0) | 2021.05.13 |
Comments