Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/us_nces/demographics/private_school/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def set_generate_statvars_flag(self, flag: bool):

if __name__ == '__main__':
try:
logging.set_verbosity(2)
logging.set_verbosity(logging.INFO)
Comment thread
shapateriya marked this conversation as resolved.
logging.info("Main Method Starts For Private School District ")
gcs_output_dir_local = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "gcs_folder")
Expand Down
2 changes: 1 addition & 1 deletion scripts/us_nces/demographics/public_school/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class NCESPublicSchool(USEducation):

if __name__ == '__main__':
try:
logging.set_verbosity(2)
logging.set_verbosity(logging.INFO)
Comment thread
shapateriya marked this conversation as resolved.
logging.info("Main Method Starts For Public School")
gcs_output_dir_local = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "gcs_folder")
Expand Down
2 changes: 1 addition & 1 deletion scripts/us_nces/demographics/school_district/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class NCESDistrictSchool(USEducation):

if __name__ == '__main__':
try:
logging.set_verbosity(2)
logging.set_verbosity(logging.INFO)
Comment thread
shapateriya marked this conversation as resolved.
logging.info("Main Method Starts For School District ")
gcs_output_dir_local = os.path.join(
os.path.dirname(os.path.abspath(__file__)), "gcs_folder")
Expand Down
Loading