mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-14 15:14:51 -04:00
8 lines
236 B
Python
8 lines
236 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
import os
|
|
|
|
logging.basicConfig(filename='%s/build.log' % os.getcwd(), filemode='w',
|
|
format='%(name)s - %(levelname)s - %(message)s', level=logging.DEBUG)
|