반응형
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
- list
- google apps script
- Apache
- Github
- PostgreSQL
- Mac
- hive
- c#
- numpy
- Kotlin
- matplotlib
- Java
- Excel
- Tkinter
- PySpark
- Python
- array
- gas
- GIT
- Google Excel
- Redshift
- django
- Google Spreadsheet
- math
- SQL
- string
- 파이썬
- dataframe
- PANDAS
Archives
- Today
- Total
달나라 노트
Google Apps Script : Logger.log, console.log (print, console print) 본문
Google Apps Script
Google Apps Script : Logger.log, console.log (print, console print)
CosmosProject 2022. 6. 4. 14:04728x90
반응형
일반적인 프로그래밍 언어에서 배우는 가장 첫 번째 기능은 보통 콘솔/터미널 화면에 특정 값을 출력하는 기능입니다.
Python이면 Print일 것이고, C#이라면 Console.WriteLine일 것입니다.
Google Script에서도 이와같은 기능을 제공합니다.
Syntax
Logger.log(value);
console.log(value);
사용법은 위와 같으며 매우 간단합니다.
log method에 출력하고 싶은 값을 넣어주면 됩니다.
위 2개 함수는 동일하게 log창에 원하는 내용을 표시해주는 기능을 제공합니다.
function myFunction() {
var test_value = 10;
Logger.log(test_value);
}
위 코드를 실행하면 로그 창에서 log method에 전달된 값(10)이 출력되는 것을 볼 수 있습니다.
function myFunction() {
var test_value = 10;
console.log(test_value);
}
console.log()도 동일한 기능인 것을 볼 수 있습니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Comments